Migration changes to song table

This commit is contained in:
kdeng00
2025-05-24 18:46:38 -04:00
parent 6f403b1120
commit 32294b3c94
+4 -4
View File
@@ -38,10 +38,10 @@ CREATE TABLE IF NOT EXISTS "song" (
-- TODO: Address discrepancy of date and year at some point
-- date TEXT NOT NULL,
year INT NOT NULL,
track SMALLINT NOT NULL,
disc SMALLINT NOT NULL,
track_count SMALLINT NOT NULL,
disc_count SMALLINT NOT NULL,
track INT NOT NULL,
disc INT NOT NULL,
track_count INT NOT NULL,
disc_count INT NOT NULL,
duration INT NOT NULL,
audio_type TEXT NOT NULL,
date_created timestamptz DEFAULT now(),