Update default weeklyCycle value

This value cannot be null or the quests won't appear in game.
This commit is contained in:
Ewerton B. S
2023-08-21 08:55:05 +09:00
committed by GitHub
parent 5d156021dc
commit 391e0c9d98

View File

@@ -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
);