Changes between Version 16 and Version 17 of TaskRecordedFile


Ignore:
Timestamp:
Mar 15, 2011, 11:23:35 PM (13 years ago)
Author:
sphery
Comment:

combine videofilemetadata.releasedate and recording.originalairdate as as metadatacommon.releasedate; move inetref to common

Legend:

Unmodified
Added
Removed
Modified
  • TaskRecordedFile

    v16 v17  
    5151# - filesize
    5252# - stars
     53# - originalairdate
    5354#
    5455# Add metadataid, which refers to a record in metadatacommon.
     
    5657# The former recorded.starttime/endtime values, which correspond to recording
    5758#    start/end times, will be in recordedfile.recstart and recordedfile.recend.
    58 # The former recorded.stars value will be moved to metadatacommon.stars.
     59# The former recorded.stars value will be in metadatacommon.stars.
     60# The former recorded.originalairdate value will be in
     61#    metadatacommon.releasedate.
    5962# The recorded.progstart/progend columns will be moved to the location where
    6063#    recorded.starttime/endtime were.
     
    8689##############################################################################
    8790# Table for storing info about a MythVideo video, joins to videofile.
    88 #  - videometadata.userrating moves to metadatacommon.stars
    89 #  - videometadata.rating moves to metadatacommon.certification
     91#  - videometadata.userrating will be in metadatacommon.stars
     92#  - videometadata.rating will be in metadatacommon.certification
     93#  - videometadta.year will be combined with/replaced by releasedate
    9094#
    9195DROP TABLE IF EXISTS videofilemetadata;
     
    97101        tagline       VARCHAR(255) NOT NULL DEFAULT '',
    98102        plot          VARCHAR(8000) NOT NULL DEFAULT '',
    99         inetref       VARCHAR(255) NOT NULL DEFAULT '',
    100         year          SMALLINT(5) NOT NULL DEFAULT 0,
    101         releasedate   DATE NOT NULL DEFAULT '0000-00-00',
    102103        length        SMALLINT(5) UNSIGNED NOT NULL DEFAULT 0,
    103104        insertdate    DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00',
     
    122123        studio        VARCHAR(128) NOT NULL DEFAULT '',
    123124        certification VARCHAR(128) NOT NULL DEFAULT '',
     125        inetref       VARCHAR(255) NOT NULL DEFAULT '',
    124126        homepage      VARCHAR(8000) NOT NULL DEFAULT '',
    125127        season        SMALLINT(5) UNSIGNED NOT NULL DEFAULT 0,
    126128        episode       SMALLINT(5) UNSIGNED NOT NULL DEFAULT 0,
     129        releasedate   DATE NOT NULL DEFAULT '0000-00-00',
    127130        stars         FLOAT NOT NULL DEFAULT 0,
    128131        processed     TINYINT(1) NOT NULL DEFAULT 0,