5 lines
183 B
MySQL
5 lines
183 B
MySQL
|
|
-- there are no valid recordings and mixes at this time
|
||
|
|
DELETE FROM recorded_tracks;
|
||
|
|
DELETE FROM mixes;
|
||
|
|
|
||
|
|
ALTER TABLE recorded_tracks ADD COLUMN discard BOOLEAN DEFAULT FALSE NOT NULL;
|