mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2024-10-29 20:42:46 +01:00
7 lines
167 B
Bash
7 lines
167 B
Bash
if [ -z "$1" ]; then
|
|
echo "Usage: AddMigration.sh <migration-name>"
|
|
exit 1
|
|
fi
|
|
|
|
dotnet ef migrations add "$1" --project Server/Phantom.Server.Database.Postgres
|