mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2025-04-28 01:15:47 +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
|