This is the code when i created the contents of the affected table to a copy so as i figured out how to restore the added_on column i wouldnt mess up the original.
Code:
CREATE TABLE `accessmy_clone`.`files_to_notes_bu_rev` (
`notes_id` bigint( 20 ) NOT NULL default '0',
`files_id` int( 11 ) default NULL ,
`added_by` bigint( 20 ) default NULL ,
`added_on` int( 11 ) default NULL ,
`notes` mediumtext,
`notes_category` int( 1 ) NOT NULL default '0',
PRIMARY KEY ( `notes_id` )
) ENGINE = MYISAM DEFAULT CHARSET = latin1;
INSERT INTO `accessmy_clone`.`files_to_notes_bu_rev`
SELECT *
FROM `accessmy_clone`.`files_to_notes` ;
as far as the file that has the data, it is one column saved in a text file, with 119,000 rows, the exact same number as the table noted above. it is just a raw txt file. if it needs to be another sort of file i can convert it to suit
thanks for the reply