Managed Postgres is attached to Rust backends.Documentation Index
Fetch the complete documentation index at: https://docs.zerct.com/llms.txt
Use this file to discover all available pages before exploring further.
Migrations
Run migrations from the Rust backend startup path or a bounded deploy command. Keep migrations idempotent and fast. Recommended pattern:- Connect through
DATABASE_URL. - Acquire one migration lock.
- Apply pending migrations from a tracked
migrations/directory. - Start the HTTP server only after migrations finish.
- opens unbounded connections;
- runs schema changes on every request;
- stores secrets in source;
- ignores migration errors;
- performs long backfills during request handling.