IT:AD:EF/CodeFirst:HowTo:Add Migrations to an Existing Database
Summary
Not sure why I would do this, but still…
Process
If you are working with an existing database, that has no migrations, you can create a Blank initial Migration:
Add-Migration First -IgnoreChanges
That might work for a local database…but not sure how one would push this type of database to production, unless one always pushes a populated database… Hum.