9 lines
No EOL
475 B
PowerShell
9 lines
No EOL
475 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 -o Migrations/Mysql -c SqliteContext -p src/EllieBot/EllieBot.csproj
|
|
dotnet ef migrations add $migrationName -o Migrations/PostgreSql -c PostgreSqlContext -p src/EllieBot/EllieBot.csproj
|
|
dotnet ef migrations add $migrationName -o Migrations/Sqlite -c MysqlContext -p src/EllieBot/EllieBot.csproj
|
|
} |