Changes between Version 8 and Version 9 of TaskRecordedFile
- Timestamp:
- 01/17/11 21:17:37 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TaskRecordedFile
v8 v9 48 48 # - editing 49 49 # - filesize 50 # 51 # The old recorded.starttime/endtime values, which correspond to recording 52 # 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) 50 56 51 57 ############################################################################## … … 61 67 starttime DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00', 62 68 defaultfile TINYINT(1) NOT NULL DEFAULT 0, 69 70 # Recording start and end times. The (new) recorded table's start/end times 71 # will reference only values from listings data--allowing us to link multiple 72 # parts of the same recording to a single row in recorded. 73 recstart DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00', 74 recend DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00', 63 75 64 76 PRIMARY KEY (chanid, starttime, fileid),
