hugo-cms/sql/schema/1_init.up.sql
Leon Mika 4ecc12f035 Initial commot
Have got DB creation and migration working
2025-01-27 07:39:19 +11:00

8 lines
164 B
SQL

CREATE TABLE site (
id BIGSERIAL NOT NULL PRIMARY KEY,
name TEXT NOT NULL,
url TEXT NOT NULL,
theme TEXT NOT NULL,
props JSON NOT NULL
);