mirror of
https://github.com/Mezeporta/Erupe.git
synced 2025-12-13 15:34:38 +01:00
Added db init script. Combined all schemas under schemas. Persisted
updates and init
This commit is contained in:
10
schemas/patch-schema/12-event_quest_cycling.sql
Normal file
10
schemas/patch-schema/12-event_quest_cycling.sql
Normal file
@@ -0,0 +1,10 @@
|
||||
BEGIN;
|
||||
|
||||
ALTER TABLE IF EXISTS public.event_quests ADD COLUMN IF NOT EXISTS start_time timestamp with time zone NOT NULL DEFAULT now();
|
||||
ALTER TABLE IF EXISTS public.event_quests ADD COLUMN IF NOT EXISTS active_duration int;
|
||||
ALTER TABLE IF EXISTS public.event_quests ADD COLUMN IF NOT EXISTS inactive_duration int;
|
||||
UPDATE public.event_quests SET active_duration=NULL, inactive_duration=NULL;
|
||||
ALTER TABLE IF EXISTS public.event_quests RENAME active_duration TO active_days;
|
||||
ALTER TABLE IF EXISTS public.event_quests RENAME inactive_duration TO inactive_days;
|
||||
|
||||
END;
|
||||
Reference in New Issue
Block a user