5 lines
162 B
Batchfile
5 lines
162 B
Batchfile
@echo off
|
|
set /p migrationName="Please enter the new migration's name: "
|
|
dotnet tool update --global dotnet-ef
|
|
dotnet ef migrations add %migrationName%
|