From 391e0c9d988ab97101c1522bef5ccb34227f76e2 Mon Sep 17 00:00:00 2001 From: "Ewerton B. S" Date: Mon, 21 Aug 2023 08:55:05 +0900 Subject: [PATCH] Update default weeklyCycle value This value cannot be null or the quests won't appear in game. --- patch-schema/03-event_quests.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patch-schema/03-event_quests.sql b/patch-schema/03-event_quests.sql index 53c184765..6bad468fc 100644 --- a/patch-schema/03-event_quests.sql +++ b/patch-schema/03-event_quests.sql @@ -7,7 +7,7 @@ create table if not exists event_quests quest_type integer not null, quest_id integer not null, mark integer, - weekly_cycle INT, + weekly_cycle integer default 1, available_in_all_cycles bool default true );