adds initial structs and get routes for persons, labels, artists, albums, and tracks

This commit is contained in:
Sundog
2024-01-03 12:13:18 -05:00
parent 0535079c1c
commit 5c1b951763
6 changed files with 1502 additions and 26 deletions

View File

@ -168,6 +168,7 @@ CREATE INDEX IF NOT EXISTS LabelTags_label_id_IDX ON LabelTags (label_id);
-- The Artists table will contain Artists!
CREATE TABLE IF NOT EXISTS Artists (
id TEXT(36),
label_id TEXT(36),
name TEXT,
bio TEXT,
website TEXT,