DB QOL stuff, but not breaking the migrations now (#5086)
This commit is contained in:
9
Content.Server.Database/add-migration.sh
Executable file
9
Content.Server.Database/add-migration.sh
Executable file
@@ -0,0 +1,9 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
if [ -z "$1" ] ; then
|
||||
echo "Must specify migration name"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
dotnet ef migrations add --context SqliteServerDbContext -o Migrations/Sqlite "$1"
|
||||
dotnet ef migrations add --context PostgresServerDbContext -o Migrations/Postgres "$1"
|
||||
Reference in New Issue
Block a user