order 9.3 Patch Schema files

This commit is contained in:
wish
2023-07-30 19:05:51 +10:00
parent d0db775c11
commit 00a06fab17
4 changed files with 0 additions and 0 deletions

View File

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