Added migrations
This commit is contained in:
@@ -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
|
||||||
|
);
|
||||||
Reference in New Issue
Block a user