Quote:
Originally Posted by Bluetiereign
I do wish I could change the date files are added. I am importing files that were uploaded all the way back to 2001. I would like to have reflected that. Was going to do this via the database, but the date is not in a format I understand.
Otherwise, Nice MOD. Installed
|
The dates are in unixtimestamp format. This will give you the actual date of the files
Code:
select FROM_UNIXTIME(dateadded) from YOUR_PREFIX_dl2_files
To update , you can use
Code:
update YOUR_PREFIX_dl2_files set dateadded = UNIX_TIMESTAMP ('YYYY-MM-DD') where id = 'xx'
Hope this helps...