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