mirror of
https://github.com/bitwarden/server.git
synced 2024-11-22 12:15:36 +01:00
e744ffe499
* Default autoscaling to off * Update util/Migrator/DbScripts/2021-10-21_00_DefaultAutoscaleLimitToCurrentSeats.sql Co-authored-by: Chad Scharf <3904944+cscharf@users.noreply.github.com> * Update util/Migrator/DbScripts/2021-10-21_00_DefaultAutoscaleLimitToCurrentSeats.sql Co-authored-by: Chad Scharf <3904944+cscharf@users.noreply.github.com> * Update util/MySqlMigrations/Scripts/2021-10-21_00_SetMaxAutoscaleSeatCount.sql Co-authored-by: Chad Scharf <3904944+cscharf@users.noreply.github.com>
21 lines
518 B
SQL
21 lines
518 B
SQL
SET @run_migration_seats = 0;
|
|
SELECT 1 FROM `Organization`
|
|
WHERE `MaxAutoscaleSeats` IS NOT NULL
|
|
LIMIT 1
|
|
INTO @run_migration_seats;
|
|
|
|
SET @run_migration_email = 0;
|
|
SELECT 1 FROM `Organization`
|
|
WHERE `OwnersNotifiedOfAutoscaling` IS NOT NULL
|
|
LIMIT 1
|
|
INTO @run_migration_email;
|
|
|
|
SET @stmt = case @run_migration_seats + @run_migration_email
|
|
WHEN 0 THEN 'UPDATE `Organization` SET `MaxAutoscaleSeats` = `Seats`'
|
|
ELSE 'SELECT ''No migration necessary'''
|
|
END;
|
|
|
|
PREPARE stmt FROM @stmt;
|
|
EXECUTE stmt;
|
|
DEALLOCATE PREPARE stmt;
|