5 lines
93 B
SQL
5 lines
93 B
SQL
CREATE TABLE IF NOT EXISTS artist_credit (
|
|
id int PRIMARY KEY,
|
|
text string NOT NULL
|
|
);
|