Performance: Running and rolling back migrations
MEDIUM IMPACT
This concept affects the database schema update speed and application startup time during deployment.
rails db:migrate
rails db:migrate:reset
| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| Running all migrations every deploy | N/A | N/A | N/A | [X] Bad |
| Running only pending migrations | N/A | N/A | N/A | [OK] Good |
| Rolling back many migrations at once | N/A | N/A | N/A | [X] Bad |
| Rolling back one migration at a time | N/A | N/A | N/A | [OK] Good |