[01]
Three migration modes, one per environment.
Pick the mode that matches your trust contract with each target. Dev can be fully automated while prod stays locked down behind the pipeline it had last year.
- managed — platform applies + tracks. Default for dev.
- export_only — platform generates SQL bundles; your CI applies. Default for staging/prod.
- reconcile_only — platform reads your existing ledger. Writes nothing.
managed
Platform applies and records. Default for dev.
allows: writes
export_only
SQL bundle out. Your CI in. Default for prod.
allows: reads · writes to customer DB: never
reconcile_only
Read your existing ledger. Platform never writes.
allows: reads only