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

7 lines
154 B
SQL

CREATE TABLE IF NOT EXISTS recordings (
id int PRIMARY KEY,
name text NOT NULL,
FOREIGN KEY(artist_credit_id) REFERENCES artist_credit(id)
);