Files
yellowjacket/backend/database/sql/schemas/audio_files.sql
T
2025-04-12 23:25:19 -05:00

7 lines
138 B
SQL

CREATE TABLE audio_files (
id uuid PRIMARY KEY,
file_path text NOT NULL,
file_type text NOT NULL,
length_seconds int NOT NULL
);