mirror of
https://github.com/Mezeporta/Erupe.git
synced 2025-12-15 08:25:09 +01:00
18 lines
425 B
PL/PgSQL
18 lines
425 B
PL/PgSQL
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,
|
|
start_time timestamp with time zone NOT NULL DEFAULT (CURRENT_DATE + interval '0 second'),
|
|
active_duration int not null,
|
|
inactive_duration int not null
|
|
);
|
|
|
|
ALTER TABLE IF EXISTS public.servers DROP COLUMN IF EXISTS season;
|
|
|
|
END;
|