Performance: Schema.rb understanding
MEDIUM IMPACT
Schema.rb affects database schema loading and migration speed during development and deployment.
Run migrations and update schema.rb regularly to reflect current database structure.Not updating schema.rb after migrations and relying on running all migrations from scratch every time.
| Pattern | Setup Time | Migration Runs | Consistency | Verdict |
|---|---|---|---|---|
| Using schema.rb snapshot | Fast (seconds) | None or minimal | High | [OK] Good |
| Running all migrations from scratch | Slow (minutes) | All migrations | Risk of inconsistency | [X] Bad |