change Enumerated Quest format

This commit is contained in:
wish
2023-07-05 00:03:16 +10:00
parent 414eb3da90
commit f487db83da
2 changed files with 14 additions and 10 deletions

View File

@@ -2,10 +2,11 @@ BEGIN;
create table if not exists event_quests
(
id serial primary key,
id serial primary key,
max_players integer,
quest_type integer,
quest_id uint16 not null
quest_type integer not null,
quest_id integer not null,
mark integer
);
END;