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

@ -23,3 +23,5 @@ INSERT INTO cc_track_types VALUES (9, 'NWS', 'News', 'This is used for noteworth
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);
ALTER SEQUENCE cc_track_types_id_seq RESTART WITH 13;