feat: Implement event quest season/time flag override

This commit is contained in:
Matthe815
2023-11-11 03:42:08 -05:00
parent 08a1f352cb
commit 3e4e325675
2 changed files with 36 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
BEGIN;
ALTER TABLE IF EXISTS public.event_quests ADD COLUMN IF NOT EXISTS flag_override integer NOT NULL DEFAULT -1;
END;