mirror of
https://github.com/Mezeporta/Erupe.git
synced 2025-12-12 15:04:38 +01:00
13 lines
278 B
PL/PgSQL
13 lines
278 B
PL/PgSQL
BEGIN;
|
|
|
|
CREATE TABLE IF NOT EXISTS public.history
|
|
(
|
|
user_id integer,
|
|
admin_id integer,
|
|
report_id integer NOT NULL,
|
|
title text COLLATE pg_catalog."default",
|
|
reason text COLLATE pg_catalog."default",
|
|
CONSTRAINT history_pkey PRIMARY KEY (report_id)
|
|
);
|
|
|
|
END; |