DB Fix #2 - restart with 13 in sequence since we have 12 default entries

This commit is contained in:
Codenift 2020-02-07 15:27:51 -05:00
parent ee4bd663bc
commit cbdf3bdcb7
1 changed files with 3 additions and 1 deletions

View File

@ -22,4 +22,6 @@ INSERT INTO cc_track_types VALUES (8, 'SHO', 'Shout Out', 'A message of congratu
INSERT INTO cc_track_types VALUES (9, 'NWS', 'News', 'This is used for noteworthy information, announcements.', true);
INSERT INTO cc_track_types VALUES (10, 'COM', 'Commercial', 'This is used for commerical advertising.', true);
INSERT INTO cc_track_types VALUES (11, 'ITV', 'Interview', 'This is used for radio interviews', true);
INSERT INTO cc_track_types VALUES (12, 'VTR', 'Voice Tracking', 'Also referred as robojock or taped. Make announcements without actually being in the station.', true);
INSERT INTO cc_track_types VALUES (12, 'VTR', 'Voice Tracking', 'Also referred as robojock or taped. Make announcements without actually being in the station.', true);
ALTER SEQUENCE cc_track_types_id_seq RESTART WITH 13;