Reset Entity-Framework Migrations

I’ve mucked up my migrations, I used IgnoreChanges on the initial migration, but now I want to delete all my migrations and start with an initial migration with all of the logic. When I delete the migrations in the folder and try and Add-Migration it doesn’t generate a full file (it’s empty – because I … Read more

EF Migrations: Rollback last applied migration?

This looks like a really common task, but I can’t find an easy way to do it. I want to undo the last applied migration. I would have expected a simple command, like PM> Update-Database -TargetMigration:”-1″ Instead, all I can come up with is: PM> Get-Migrations Retrieving migrations that have been applied to the target … Read more