Files
2024-02-08 18:37:55 -05:00

5 lines
95 B
SQL

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