Migrations View
The Migrations view shows migration state from _mount_migrations, the same
source migrate status uses.
Open it
Section titled “Open it”- Open Studio (
mountsqli dev). - Go to the Migrations view.
What it shows
Section titled “What it shows”- Applied — migrations recorded in
_mount_migrations. - Pending — on-disk migrations not yet applied.
Use it with the CLI
Section titled “Use it with the CLI”The view is read-only insight. To act on it, use the CLI:
mountsqli migrate apply # run pendingmountsqli migrate status # same data, in the terminalBest practices
Section titled “Best practices”- Use the view to confirm a deploy applied everything before sign-off.
- Pair with
analyzeto catch drift.
Common mistakes
Section titled “Common mistakes”- Thinking you can apply from the UI (you can’t — use the CLI).
- Confusing
:memory:state (resets each process) with a file DB.
Related
Section titled “Related”- Migrations → Status — the CLI equivalent.
- Migrations → Apply — run pending.
