dotnet ef commands
Add migration
dotnet ef migrations add my_migation
Apply migration
dotnet ef database update
List migrations
dotnet ef migrations list
Remove last migration
dotnet ef migrations remove
Last updated