mirror of
https://github.com/mvvasilev/findtheti.me.git
synced 2025-04-19 13:39:52 +03:00
10 lines
No EOL
283 B
SQL
10 lines
No EOL
283 B
SQL
CREATE SCHEMA IF NOT EXISTS events;
|
|
|
|
CREATE TABLE IF NOT EXISTS events.event (
|
|
id BIGSERIAL,
|
|
snowflake_if VARCHAR(255) NOT NULL,
|
|
from_date TIMESTAMP NOT NULL,
|
|
to_date TIMESTAMP NOT NULL,
|
|
event_type VARCHAR(255) NOT NULL,
|
|
CONSTRAINT PK_event PRIMARY KEY (id)
|
|
) |