[Debconf-video-commits] r137 - package/trunk/src
benh at alioth.debian.org
benh at alioth.debian.org
Sun Aug 3 23:46:38 UTC 2008
Author: benh
Date: 2008-08-03 23:46:38 +0000 (Sun, 03 Aug 2008)
New Revision: 137
Modified:
package/trunk/src/dc-video-schema.sql
Log:
Added generated_time and published_time to video_target_file to support future enhancements.
Currently these may be NULL since we do not have this information for existing files.
Modified: package/trunk/src/dc-video-schema.sql
===================================================================
--- package/trunk/src/dc-video-schema.sql 2008-08-03 23:36:03 UTC (rev 136)
+++ package/trunk/src/dc-video-schema.sql 2008-08-03 23:46:38 UTC (rev 137)
@@ -19,7 +19,7 @@
id serial PRIMARY KEY,
conference_id integer NOT NULL,
conference_room text NOT NULL,
- recording_time timestamp NOT NULL,
+ recording_time timestamp NOT NULL, -- in conference timezone
recording_duration interval NOT NULL,
recording_filename character varying(100) NOT NULL UNIQUE,
file_status_id integer NOT NULL REFERENCES video_file_status,
@@ -77,6 +77,8 @@
file_status_id integer NOT NULL REFERENCES video_file_status,
comments text,
locked_by integer,
+ generated_time timestamp, -- in GMT
+ published_time timestamp, -- in GMT
UNIQUE (event_recording_id, target_format_id)
);
More information about the Debconf-video-commits
mailing list