mirror of
https://github.com/Mezeporta/Erupe.git
synced 2025-12-13 23:44:52 +01:00
11 lines
164 B
PL/PgSQL
11 lines
164 B
PL/PgSQL
BEGIN;
|
|
|
|
create table if not exists event_quests
|
|
(
|
|
id serial,
|
|
max_players integer,
|
|
quest_type integer,
|
|
quest_id uint16 not null
|
|
);
|
|
|
|
END; |