mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00
[SM-109] Automate Local Development EF Database Migrations (#2275)
* Update migrate.ps1 to work for other database provider migrations
This commit is contained in:
parent
402c89dc25
commit
7d095f4f03
@ -6,12 +6,44 @@
|
|||||||
# in the future and investigate if we can migrate back.
|
# in the future and investigate if we can migrate back.
|
||||||
# docker-compose --profile mssql exec mssql bash /mnt/helpers/run_migrations.sh @args
|
# docker-compose --profile mssql exec mssql bash /mnt/helpers/run_migrations.sh @args
|
||||||
|
|
||||||
docker run `
|
param([switch]$all = $false, [switch]$postgres = $false, [switch]$mysql = $false, [switch]$mssql = $false)
|
||||||
-v "$(pwd)/helpers/mssql:/mnt/helpers" `
|
|
||||||
-v "$(pwd)/../util/Migrator:/mnt/migrator/" `
|
if (!$all -and !$postgres -and !$mysql) {
|
||||||
-v "$(pwd)/.data/mssql:/mnt/data" `
|
$mssql = $true;
|
||||||
--env-file .env `
|
}
|
||||||
--network=bitwardenserver_default `
|
|
||||||
--rm `
|
if ($all -or $postgres -or $mysql) {
|
||||||
mcr.microsoft.com/mssql-tools `
|
dotnet ef *> $null
|
||||||
/mnt/helpers/run_migrations.sh @args
|
if ($LASTEXITCODE -ne 0) {
|
||||||
|
Write-Host "Entity Framework Core tools were not found in the dotnet global tools. Attempting to install"
|
||||||
|
dotnet tool install dotnet-ef -g
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($all -or $mssql) {
|
||||||
|
Write-Host "Starting Microsoft SQL Server Migrations"
|
||||||
|
docker run `
|
||||||
|
-v "$(pwd)/helpers/mssql:/mnt/helpers" `
|
||||||
|
-v "$(pwd)/../util/Migrator:/mnt/migrator/" `
|
||||||
|
-v "$(pwd)/.data/mssql:/mnt/data" `
|
||||||
|
--env-file .env `
|
||||||
|
--network=bitwardenserver_default `
|
||||||
|
--rm `
|
||||||
|
mcr.microsoft.com/mssql-tools `
|
||||||
|
/mnt/helpers/run_migrations.sh @args
|
||||||
|
}
|
||||||
|
|
||||||
|
$currentDir = Get-Location
|
||||||
|
|
||||||
|
if ($all -or $mysql) {
|
||||||
|
Write-Host "Starting MySQL Migrations"
|
||||||
|
Set-Location "$currentDir/../util/MySqlMigrations/"
|
||||||
|
dotnet ef database update
|
||||||
|
}
|
||||||
|
if ($all -or $postgres) {
|
||||||
|
Write-Host "Starting PostgreSQL Migrations"
|
||||||
|
Set-Location "$currentDir/../util/PostgresMigrations/"
|
||||||
|
dotnet ef database update
|
||||||
|
}
|
||||||
|
|
||||||
|
Set-Location "$currentDir"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user