Create coverart #134

Merged
kdeng00 merged 12 commits from create_coverart into v0.2 2025-05-24 19:02:49 -04:00
Showing only changes of commit 32294b3c94 - Show all commits
+4 -4
View File
@@ -38,10 +38,10 @@ CREATE TABLE IF NOT EXISTS "song" (
-- TODO: Address discrepancy of date and year at some point -- TODO: Address discrepancy of date and year at some point
-- date TEXT NOT NULL, -- date TEXT NOT NULL,
year INT NOT NULL, year INT NOT NULL,
track SMALLINT NOT NULL, track INT NOT NULL,
disc SMALLINT NOT NULL, disc INT NOT NULL,
track_count SMALLINT NOT NULL, track_count INT NOT NULL,
disc_count SMALLINT NOT NULL, disc_count INT NOT NULL,
duration INT NOT NULL, duration INT NOT NULL,
audio_type TEXT NOT NULL, audio_type TEXT NOT NULL,
date_created timestamptz DEFAULT now(), date_created timestamptz DEFAULT now(),