Prepared production migrations

This commit is contained in:
Borna Rajković 2023-07-11 21:40:15 +02:00
parent 3b7b9ea327
commit 3f25857fca
1 changed files with 10 additions and 1 deletions

View File

@ -1 +1,10 @@
package prod
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
);