What are scaffolded migrations?
- Scaffolded migrations are the automatically generated classes that contain Up() and
Down() methods.
- They are generated based on model differences.
- You can manually edit these files to:
- Add custom SQL
- Rename columns
- Seed data, etc.