holiday-api/db/prod/v1_0.sql

10 lines
189 B
MySQL
Raw Normal View History

2023-07-11 19:40:15 +00:00
CREATE TABLE IF NOT EXISTS "holiday"
(
id uuid,
country char(2),
date date,
name varchar(64),
description varchar(512),
is_state boolean,
is_religious boolean
);