first db schema gen

This commit is contained in:
2025-04-13 18:15:22 -05:00
parent d4473f98b6
commit 0bbd1b2bca
16 changed files with 147 additions and 12 deletions
@@ -1,4 +1,5 @@
CREATE TABLE release_groups (
id INTEGER PRIMARY KEY,
name text NOT NULL
id int PRIMARY KEY,
name text NOT NULL,
FOREIGN KEY(cover_art_id) REFERENCES cover_art(id)
);