Files
yellowjacket/backend/database/sql/schemas/cover_art.sql
T
2025-04-16 12:38:08 -05:00

8 lines
220 B
SQL

CREATE TABLE IF NOT EXISTS cover_art (
id int PRIMARY KEY,
is_embedded bool NOT NULL DEFAULT(false),
file_path text NOT NULL,
file_type_id int NOT NULL,
FOREIGN KEY(file_type_id) REFERENCES file_types(id)
);