Files
gw-svelte/docker/postgres/init/001-site-content.sql
T
2026-05-02 19:44:45 +12:00

6 lines
141 B
SQL

create table if not exists site_content (
key text primary key,
value jsonb not null,
updated_at timestamptz not null default now()
);