mirror of
https://github.com/space-wizards/space-station-14.git
synced 2026-02-14 19:29:53 +01:00
10 lines
267 B
Bash
Executable File
10 lines
267 B
Bash
Executable File
#!/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"
|