Added track number field to playlist songs table

This commit is contained in:
Carter Bertolini 2024-12-10 17:39:09 -05:00
parent 8c356547e6
commit f41ec6f8d5
2 changed files with 2 additions and 0 deletions

View File

@ -0,0 +1 @@
ALTER TABLE playlist_songs DROP COLUMN track;

View File

@ -0,0 +1 @@
ALTER TABLE playlist_songs ADD COLUMN track INTEGER DEFAULT 1 NOT NULL;