5 lines
74 B
SQL
5 lines
74 B
SQL
CREATE TABLE artists (
|
|
id int PRIMARY KEY,
|
|
name text NOT NULL
|
|
);
|