mirror of
https://github.com/Mezeporta/Erupe.git
synced 2025-12-12 15:04:38 +01:00
9 lines
150 B
PL/PgSQL
9 lines
150 B
PL/PgSQL
BEGIN;
|
|
|
|
CREATE TABLE IF NOT EXISTS public.feature_weapon
|
|
(
|
|
start_time timestamp without time zone NOT NULL,
|
|
featured integer NOT NULL
|
|
);
|
|
|
|
END; |