mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
12 lines
196 B
PowerShell
12 lines
196 B
PowerShell
#!/usr/bin/env pwsh
|
|
|
|
param([String]$name)
|
|
|
|
if ($name -eq "")
|
|
{
|
|
Write-Error "must specify migration name"
|
|
exit
|
|
}
|
|
|
|
dotnet ef migrations add --context BenchmarkContext -o Migrations $name
|