5 lines
194 B
Batchfile
5 lines
194 B
Batchfile
@echo off
|
|
set /p migrationName="Please enter the migration's name which should be the **ACTIVE** one: "
|
|
dotnet tool update --global dotnet-ef
|
|
dotnet ef database update %migrationName%
|