Files

6 lines
141 B
SQL
Raw Permalink Normal View History

2026-05-02 08:26:18 +12:00
create table if not exists site_content (
key text primary key,
value jsonb not null,
updated_at timestamptz not null default now()
);