Update 03-event_quests.sql for auto-cycle

This commit is contained in:
Ewerton B. S
2023-08-20 08:00:39 +09:00
committed by GitHub
parent fe465b5de4
commit f5b40b55b9

View File

@@ -6,9 +6,17 @@ create table if not exists event_quests
max_players integer,
quest_type integer not null,
quest_id integer not null,
mark integer
mark integer,
weekly_cycle INT,
available_in_all_cycles bool default true
);
ALTER TABLE IF EXISTS public.servers DROP COLUMN IF EXISTS season;
END;
CREATE TABLE IF NOT EXISTS weekly_cycle_info (
id SERIAL PRIMARY KEY,
current_cycle_number INT,
last_cycle_update_timestamp TIMESTAMP WITH TIME ZONE
);
END;