Migrations cleanup

This commit is contained in:
kdeng00
2025-04-29 21:49:00 -04:00
parent 8a2dfc31e9
commit 4633ccc98c
+1 -1
View File
@@ -9,11 +9,11 @@ CREATE TABLE IF NOT EXISTS "songQueue" (
data BYTEA NOT NULL
);
-- Table to store queued metadata
CREATE TABLE IF NOT EXISTS "metadataQueue" (
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
metadata jsonb NOT NULL,
created_at timestamptz DEFAULT now(),
-- TIMESTAMPTZ
song_queue_id UUID NOT NULL
);