hugo-cms/sql/schema/1_init.up.sql

8 lines
164 B
MySQL
Raw Normal View History

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
);