Squash merge audio-player-component into main
This commit is contained in:
@@ -1,6 +1,11 @@
|
||||
CREATE TABLE IF NOT EXISTS release_groups (
|
||||
id int PRIMARY KEY,
|
||||
name text NOT NULL,
|
||||
cover_art_id int NOT NULL,
|
||||
FOREIGN KEY(cover_art_id) REFERENCES cover_art(id)
|
||||
id INTEGER PRIMARY KEY,
|
||||
name TEXT NOT NULL UNIQUE,
|
||||
cover_art_id INTEGER,
|
||||
album_artist_credit_id INTEGER,
|
||||
year INTEGER,
|
||||
total_tracks INTEGER,
|
||||
total_discs INTEGER,
|
||||
FOREIGN KEY(cover_art_id) REFERENCES cover_art(id),
|
||||
FOREIGN KEY(album_artist_credit_id) REFERENCES artist_credit(id)
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user