Migration change

This commit is contained in:
kdeng00
2025-04-29 20:57:00 -04:00
parent 720651843a
commit ccbb82c643
+2 -1
View File
@@ -12,7 +12,8 @@ CREATE TABLE IF NOT EXISTS "songQueue" (
CREATE TABLE IF NOT EXISTS "metadataQueue" (
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
metadata jsonb NOT NULL,
created_at timestamp DEFAULT now(),
created_at timestamptz DEFAULT now(),
-- TIMESTAMPTZ
song_queue_id UUID NOT NULL
);