mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
9 lines
168 B
Bash
9 lines
168 B
Bash
#!/usr/bin/env bash
|
|
|
|
if [ -z "$1" ] ; then
|
|
echo "Must specify migration name"
|
|
exit 1
|
|
fi
|
|
|
|
dotnet ef migrations add --context BenchmarkContext -o Migrations "$1"
|