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