chore: Rename schema to prevent confusion

This commit is contained in:
Matthew
2023-11-24 03:25:35 -05:00
parent c86b95fe40
commit b823cbf2ae

View File

@@ -0,0 +1,7 @@
BEGIN;
ALTER TABLE IF EXISTS public.event_quests ADD COLUMN IF NOT EXISTS start_time timestamp with time zone NOT NULL DEFAULT (CURRENT_DATE + interval '0 second');
ALTER TABLE IF EXISTS public.event_quests ADD COLUMN IF NOT EXISTS active_duration int DEFAULT 4;
ALTER TABLE IF EXISTS public.event_quests ADD COLUMN IF NOT EXISTS inactive_duration int DEFAULT 3;
END;