first db schema gen
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
CREATE TABLE artist_credit_artist (
|
||||
id int PRIMARY KEY,
|
||||
FOREIGN KEY(artist_id) REFERENCES artists(id),
|
||||
FOREIGN KEY(credit_id) REFERENCES artist_credit(id)
|
||||
);
|
||||
Reference in New Issue
Block a user