Tovuk app databases are SQLite databases owned by an app and attached to Rust workers as explicit resources.Documentation Index
Fetch the complete documentation index at: https://docs.tovuk.com/llms.txt
Use this file to discover all available pages before exploring further.
Migration guidance
Recommended pattern:- Keep migrations in a tracked
migrations/directory. - Acquire one migration lock per app database.
- Apply pending migrations before serving traffic.
- Keep request handlers free of schema changes and long backfills.
- opens unbounded connections;
- runs schema changes on every request;
- stores secrets in source;
- ignores migration errors;
- performs long backfills during request handling.