Files
icarus/migrations/20250420185217_init_migration.sql
T
2025-04-20 15:06:00 -04:00

9 lines
259 B
SQL

-- 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
);