feat(store): config table for instance-global app-config overrides

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
2026-08-04 00:06:22 +02:00
parent 8508e89ad7
commit f6712497ba
4 changed files with 96 additions and 0 deletions

View File

@@ -14,6 +14,7 @@ Generated from the live schema via `go run ./cmd/dumpschema` -- do not hand-edit
- [`kind_assignments`](#kind_assignments)
- [`sync_state`](#sync_state)
- [`sync_runs`](#sync_runs)
- [`config`](#config)
## `users`
@@ -263,6 +264,16 @@ CREATE TABLE sync_runs (
);
```
## `config`
```sql
CREATE TABLE config (
key TEXT PRIMARY KEY,
value TEXT NOT NULL,
updated_at TEXT NOT NULL DEFAULT (datetime('now'))
);
```
## Views
### `current_kind_assignment`