I have created a migration using the Add-Migration command, but I\'d like to change the name of that migration. How can I undo the migration command, so that I
Add-Migration
Just use command:
Update-Database nameMigration -context nameContext
And Then
Remove-migration -Context nameContext