mirror of
https://github.com/Mezeporta/Erupe.git
synced 2025-12-15 08:25:09 +01:00
Update 03-event_quests.sql for auto-cycle
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user