6 lines
141 B
SQL
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()
|
|
);
|