diff --git a/migrations/20250420185217_init_migration.sql b/migrations/20250420185217_init_migration.sql index 09fde2f..6415f2a 100644 --- a/migrations/20250420185217_init_migration.sql +++ b/migrations/20250420185217_init_migration.sql @@ -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(),