mirror of
https://github.com/Mezeporta/Erupe.git
synced 2025-12-13 07:25:03 +01:00
11 lines
205 B
PL/PgSQL
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; |