fixed missing columns

This commit is contained in:
2025-04-16 12:38:08 -05:00
parent c20cac4015
commit 792ee630db
6 changed files with 9 additions and 0 deletions
@@ -2,6 +2,8 @@ CREATE TABLE IF NOT EXISTS audio_files (
id int PRIMARY KEY,
file_path text NOT NULL UNIQUE,
length_milliseconds int NOT NULL,
file_type_id int NOT NULL,
recording_id int NOT NULL,
FOREIGN KEY(file_type_id) REFERENCES file_types(id),
FOREIGN KEY(recording_id) REFERENCES recordings(id)
);