Files
yellowjacket/backend/database/sql/schemas/recordings.sql
T
2025-04-13 18:15:22 -05:00

7 lines
140 B
SQL

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