Added paxes fix and missing fields to db

This commit is contained in:
stratic-dev
2023-10-24 01:48:20 +01:00
parent 94f9174afa
commit c4e8cd5999
2 changed files with 34 additions and 35 deletions

View File

@@ -3,10 +3,14 @@ BEGIN;
create table if not exists event_quests
(
id serial primary key,
index_value integer,
max_players integer,
quest_type integer not null,
quest_id integer not null,
mark integer
mark integer,
quest_option integer not null,
);
ALTER TABLE IF EXISTS public.servers DROP COLUMN IF EXISTS season;