mirror of
https://github.com/Mezeporta/Erupe.git
synced 2025-12-23 04:16:33 +01:00
12 lines
201 B
PL/PgSQL
12 lines
201 B
PL/PgSQL
BEGIN;
|
|
|
|
CREATE TABLE IF NOT EXISTS public.guild_meals
|
|
(
|
|
id serial NOT NULL PRIMARY KEY,
|
|
guild_id int NOT NULL,
|
|
meal_id int NOT NULL,
|
|
level int NOT NULL,
|
|
expires int NOT NULL
|
|
);
|
|
|
|
END; |