This repository has been archived on 2024-12-22. You can view files and clone it, but cannot push or open issues or pull requests.
elliebot/migrate.ps1

9 lines
409 B
PowerShell
Raw Normal View History

2024-06-18 11:48:54 +00:00
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/EllieBot/EllieBot.csproj
dotnet ef migrations add $migrationName -c PostgreSqlContext -p src/EllieBot/EllieBot.csproj
dotnet ef migrations add $migrationName -c MysqlContext -p src/EllieBot/EllieBot.csproj
}