Files
2026-05-05 20:02:40 +00:00

7 lines
96 B
Markdown

```sql
create table public.settings (
key text not null primary key,
value text null
);
```