mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2026-04-12 08:57:44 +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
|