1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-30 07:36:14 -05:00

Remove EF migration scripts (#2550)

* Removed Scripts folders

* Removed .csproj references.

* Added back HelperScripts

* Added back additional helper scripts.

* Fixed extra ItemGroup
This commit is contained in:
Todd Martin
2023-01-10 13:46:19 -05:00
committed by GitHub
parent ea9e30c35f
commit 145071d499
49 changed files with 12 additions and 1617 deletions

View File

@ -0,0 +1,20 @@
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;