mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2025-08-20 22:49:50 +02:00
.config
.run
.workdir
Agent
Common
Controller
Docker
Utils
Web
.dockerignore
.gitattributes
.gitignore
AddMigration.bat
AddMigration.sh
Directory.Build.props
Directory.Build.targets
Dockerfile
LICENSE
Packages.props
PhantomPanel.sln
README.md
global.json
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
|