mirror of
https://github.com/Mezeporta/Erupe.git
synced 2025-12-12 15:04:38 +01:00
12 lines
196 B
PL/PgSQL
12 lines
196 B
PL/PgSQL
BEGIN;
|
|
|
|
ALTER TABLE IF EXISTS public.users ADD COLUMN op boolean;
|
|
|
|
CREATE TABLE public.bans
|
|
(
|
|
user_id integer NOT NULL,
|
|
expires timestamp with time zone,
|
|
PRIMARY KEY (user_id)
|
|
);
|
|
|
|
END; |