mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-11-02 15:54:27 -05:00
11 lines
427 B
PowerShell
11 lines
427 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 -p src/NadekoBot/NadekoBot.csproj
|
|
dotnet ef migrations add $migrationName -c PostgreSqlContext -p src/NadekoBot/NadekoBot.csproj
|
|
dotnet ef migrations add $migrationName -c MysqlContext -p src/NadekoBot/NadekoBot.csproj
|
|
}
|
|
|