Files
yellowjacket/backend/database/sql/schemas/artists.sql
T

5 lines
88 B
SQL

CREATE TABLE IF NOT EXISTS artists (
id int PRIMARY KEY,
name text NOT NULL
);