57 lines
1.3 KiB
SQL
57 lines
1.3 KiB
SQL
CREATE TABLE IF NOT EXISTS "country"
|
|
(
|
|
id uuid,
|
|
iso_name char(2) UNIQUE NOT NULL,
|
|
name varchar(45) NOT NULL,
|
|
|
|
primary key (id)
|
|
);
|
|
|
|
CREATE TABLE IF NOT EXISTS "holiday"
|
|
(
|
|
id uuid,
|
|
country char(2) NOT NULL,
|
|
date date NOT NULL,
|
|
name varchar(64) NOT NULL,
|
|
description varchar(512),
|
|
is_state boolean NOT NULL,
|
|
is_religious boolean NOT NULL,
|
|
|
|
primary key (id),
|
|
constraint fk_country_id foreign key (country)
|
|
references country(iso_name) on delete cascade on update cascade
|
|
);
|
|
|
|
CREATE TABLE IF NOT EXISTS "webhook"
|
|
(
|
|
id uuid,
|
|
created timestamp NOT NULL,
|
|
url varchar(256) NOT NULL,
|
|
country char(2) NOT NULL,
|
|
retry_count int NOT NULL,
|
|
on_created bool NOT NULL,
|
|
on_edited bool NOT NULL,
|
|
on_deleted bool NOT NULL,
|
|
|
|
primary key (id),
|
|
constraint fk_country_id foreign key (country)
|
|
references country(iso_name) on delete cascade on update cascade
|
|
);
|
|
|
|
CREATE TABLE IF NOT EXISTS "job"
|
|
(
|
|
id uuid,
|
|
webhook_id uuid NOT NULL,
|
|
|
|
created timestamp NOT NULL,
|
|
success bool NOT NULL,
|
|
success_time timestamp,
|
|
|
|
retry_count int NOT NULL,
|
|
|
|
content varchar(1024) NOT NULL,
|
|
|
|
primary key (id),
|
|
constraint fk_webhook_id foreign key (webhook_id)
|
|
references webhook(id) on delete cascade on update cascade
|
|
); |