Fixed script's encoding

This commit is contained in:
Thorsten Sommer 2022-06-12 21:43:19 +02:00
parent 50ffcb33b1
commit bfe30b758f
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
@echo off @echo off
set /p migrationName="Please enter the new migration's name: " set /p migrationName="Please enter the new migration's name: "
dotnet tool update --global dotnet-ef dotnet tool update --global dotnet-ef
dotnet ef migrations add %migrationName% dotnet ef migrations add %migrationName%

View File

@ -1,4 +1,4 @@
@echo off @echo off
set /p migrationName="Please enter the migration's name which should be the **ACTIVE** one: " set /p migrationName="Please enter the migration's name which should be the **ACTIVE** one: "
dotnet tool update --global dotnet-ef dotnet tool update --global dotnet-ef
dotnet ef database update %migrationName% dotnet ef database update %migrationName%