5 lines
95 B
SQL

CREATE TABLE artists (
id SERIAL PRIMARY KEY UNIQUE NOT NULL,
name VARCHAR NOT NULL
);