dotnet core run second migrations code example
Example 1: add migration ef core
dotnet ef migrations add InitialCreate
Example 2: sqllite add-migration asp.net
Add-Migration InitialCreate -Context BlogContext -OutputDir Migrations\SqlServerMigrations
Add-Migration InitialCreate -Context SqliteBlogContext -OutputDir Migrations\SqliteMigrations