how to run migration in visual studio code example
Example 1: entity framework migration
Update-Database
Example 2: enable migration in .net core
dotnet ef migrations add InitialCreate
Example 3: ef rollback migration
//EF 6.4
//PM> Update-Database -TargetMigration:"NameOfSecondToLastMigration"