For some reason, my migrations appear to have been jumbled/corrupted/whatever. I\'m at the point where I just want to start over, so is there a way to completely undo all m
You can rollback to any migration by using:
Update-Database -TargetMigration:"MigrationName"
If you want to rollback all migrations you can use:
Update-Database -TargetMigration:0
or equivalent:
Update-Database -TargetMigration:$InitialDatabase
In some cases you can also delete database and all migration classes.