mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2025-05-01 18:34:07 +02:00
7 lines
258 B
Bash
7 lines
258 B
Bash
if [ -z "$1" ]; then
|
|
echo "Usage: AddMigration.sh <migration-name>"
|
|
exit 1
|
|
fi
|
|
|
|
dotnet ef migrations add "$1" --project Controller/Phantom.Controller.Database.Postgres --msbuildprojectextensionspath .artifacts/obj/Phantom.Controller.Database.Postgres
|