Files
Erupe/migrations/000018_event_week.up.sql
2022-07-29 03:25:23 +10:00

11 lines
205 B
PL/PgSQL

BEGIN;
CREATE TABLE IF NOT EXISTS public.event_week
(
id integer NOT NULL,
event_id integer NOT NULL,
date_expiration integer NOT NULL,
CONSTRAINT event_week_pkey PRIMARY KEY (id)
);
END;