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
+3 -2
View File
@@ -1,5 +1,6 @@
CREATE TABLE recordings (
id INTEGER PRIMARY KEY,
name text NOT NULL
id int PRIMARY KEY,
name text NOT NULL,
FOREIGN KEY(artist_credit_id) REFERENCES artist_credit(id)
);