Files
nadekobot/migrate.ps1
2024-04-27 16:03:48 +00:00

11 lines
325 B
PowerShell

if ($args.Length -eq 0) {
Write-Host "Please provide a migration name." -ForegroundColor Red
}
else {
$migrationName = $args[0]
dotnet ef migrations add $migrationName -c SqliteContext
dotnet ef migrations add $migrationName -c PostgreSqlContext
dotnet ef migrations add $migrationName -c MysqlContext
}