Changes between Version 10 and Version 11 of TaskRecordedFile
- Timestamp:
- 01/23/11 00:33:03 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TaskRecordedFile
v10 v11 38 38 # Two versions after migration, delete the following fields which would be 39 39 # unused at that time: 40 # - starttime 41 # - endtime 40 42 # - storagegroup 41 43 # - hostname … … 49 51 # - filesize 50 52 # 51 # The oldrecorded.starttime/endtime values, which correspond to recording53 # The former recorded.starttime/endtime values, which correspond to recording 52 54 # start/end times, will be in recordedfile.recstart and recordedfile.recend. 53 # Also deleted/moved are: 54 # - progstart (the starttime field will reference program listings start time) 55 # - progend (the endtime field will reference program listings end time) 55 # The recorded.progstart/progend columns will be moved to the location where 56 # recorded.starttime/endtime were. 56 57 57 58 ############################################################################## … … 65 66 66 67 chanid INT UNSIGNED NOT NULL DEFAULT 0, 67 starttimeDATETIME NOT NULL DEFAULT '0000-00-00 00:00:00',68 progstart DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00', 68 69 69 70 # Recording start and end times. The (new) recorded table's start/end times … … 75 76 defaultfile TINYINT(1) NOT NULL DEFAULT 0, 76 77 77 PRIMARY KEY (chanid, starttime, fileid),78 PRIMARY KEY (chanid, progstart, fileid), 78 79 INDEX (fileid) 79 80 );
