formatting, strip out unknown values

This commit is contained in:
wish
2023-10-24 22:18:09 +11:00
parent c4e8cd5999
commit 64cb106c70
2 changed files with 25 additions and 28 deletions

View File

@@ -3,14 +3,10 @@ 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,
quest_option integer not null,
mark integer
);
ALTER TABLE IF EXISTS public.servers DROP COLUMN IF EXISTS season;