CC-3899: After upgrade from 2.0.3 to 2.1.0, the uploaded time of media files looks like "17:25:36.587707"

-fixed
This commit is contained in:
Martin Konecny 2012-05-29 11:22:58 -04:00
parent 11b52905df
commit 4e6a821314
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ ALTER TABLE cc_files
ALTER COLUMN length TYPE interval /* TYPE change - table: cc_files original: time without time zone new: interval */,
ALTER COLUMN length SET DEFAULT '00:00:00'::interval;
UPDATE cc_files SET utime = now();
UPDATE cc_files SET utime = now()::timestamp(0);
ALTER TABLE cc_music_dirs
ADD COLUMN "exists" boolean DEFAULT true,