My project has many migrations. To be precise, there are 35. Now that we're going for version 1.0 I want to "sum" these 35 migrations into a single migration for ease of control.
How can I do that?
How can I generate a aggregate of all these migrations as if I have never created a previous migration?
Details:
- EF 6
- Using Code First
- Automatic Migrations: False
Deleting the previous migrations and trying to "Add-Migration" does not work... neither does rolling back the database to target migration 0... Is there a flag such as "Ignore Previous Migrations"?