mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2025-05-07 09:34:03 +02:00
9 lines
259 B
Batchfile
9 lines
259 B
Batchfile
@echo off
|
|
|
|
if [%1]==[] (
|
|
echo "Usage: AddMigration.bat <migration-name>"
|
|
exit
|
|
)
|
|
|
|
dotnet ef migrations add %~1 --project Controller/Phantom.Controller.Database.Postgres --msbuildprojectextensionspath .artifacts/obj/Phantom.Controller.Database.Postgres
|