diff --git a/migrations/20250420185217_init_migration.sql b/migrations/20250420185217_init_migration.sql new file mode 100644 index 0000000..cb96059 --- /dev/null +++ b/migrations/20250420185217_init_migration.sql @@ -0,0 +1,9 @@ +-- Add migration script here +CREATE EXTENSION IF NOT EXISTS pgcrypto; + +-- Table to store queued songs to process +CREATE TABLE IF NOT EXISTS "songQueue" ( + id UUID PRIMARY KEY DEFAULT gen_random_uuid(), + filename TEXT NOT NULL, + data BYTEA NOT NULL +); \ No newline at end of file