Files
Erupe/patch-schema/active-feature.sql
2022-10-23 12:45:10 +11:00

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;