mirror of
https://github.com/Mezeporta/Erupe.git
synced 2026-02-04 17:22:16 +01:00
14 lines
289 B
PL/PgSQL
14 lines
289 B
PL/PgSQL
BEGIN;
|
|
|
|
CREATE TABLE IF NOT EXISTS public.guild_adventures
|
|
(
|
|
id serial NOT NULL PRIMARY KEY,
|
|
guild_id int NOT NULL,
|
|
destination int NOT NULL,
|
|
charge int NOT NULL DEFAULT 0,
|
|
depart int NOT NULL,
|
|
return int NOT NULL,
|
|
collected_by text NOT NULL DEFAULT ''
|
|
);
|
|
|
|
END; |