mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00
Add explicit options to db migration script (#2637)
This commit is contained in:
parent
cf25d55090
commit
285b2ae55b
@ -6,7 +6,15 @@
|
|||||||
# 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
|
||||||
|
|
||||||
param([switch]$all = $false, [switch]$postgres = $false, [switch]$mysql = $false, [switch]$mssql = $false, [switch]$sqlite = $false)
|
param(
|
||||||
|
[switch]$all = $false,
|
||||||
|
[switch]$postgres = $false,
|
||||||
|
[switch]$mysql = $false,
|
||||||
|
[switch]$mssql = $false,
|
||||||
|
[switch]$sqlite = $false,
|
||||||
|
[switch]$selfhost = $false,
|
||||||
|
[switch]$pipeline = $false
|
||||||
|
)
|
||||||
|
|
||||||
if (!$all -and !$postgres -and !$mysql -and !$sqlite) {
|
if (!$all -and !$postgres -and !$mysql -and !$sqlite) {
|
||||||
$mssql = $true;
|
$mssql = $true;
|
||||||
@ -21,6 +29,12 @@ if ($all -or $postgres -or $mysql -or $sqlite) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if ($all -or $mssql) {
|
if ($all -or $mssql) {
|
||||||
|
if ($selfhost) {
|
||||||
|
$migrationArgs = "-s"
|
||||||
|
} elseif ($pipeline) {
|
||||||
|
$migrationArgs = "-p"
|
||||||
|
}
|
||||||
|
|
||||||
Write-Host "Starting Microsoft SQL Server Migrations"
|
Write-Host "Starting Microsoft SQL Server Migrations"
|
||||||
docker run `
|
docker run `
|
||||||
-v "$(pwd)/helpers/mssql:/mnt/helpers" `
|
-v "$(pwd)/helpers/mssql:/mnt/helpers" `
|
||||||
@ -30,7 +44,7 @@ if ($all -or $mssql) {
|
|||||||
--network=bitwardenserver_default `
|
--network=bitwardenserver_default `
|
||||||
--rm `
|
--rm `
|
||||||
mcr.microsoft.com/mssql-tools `
|
mcr.microsoft.com/mssql-tools `
|
||||||
/mnt/helpers/run_migrations.sh @args
|
/mnt/helpers/run_migrations.sh $migrationArgs
|
||||||
}
|
}
|
||||||
|
|
||||||
$currentDir = Get-Location
|
$currentDir = Get-Location
|
||||||
|
Loading…
x
Reference in New Issue
Block a user