mirror of
https://github.com/bitwarden/server.git
synced 2025-04-04 20:50:21 -05:00
Default autoscaling to off (#1659)
* 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>
This commit is contained in:
parent
4edc75d21d
commit
e744ffe499
@ -0,0 +1,6 @@
|
||||
IF NOT EXISTS (SELECT TOP(1) 1 FROM [dbo].[Organization] WHERE [MaxAutoscaleSeats] IS NOT NULL)
|
||||
AND NOT EXISTS ( SELECT TOP(1) 1 FROM [dbo].[Organization] WHERE [OwnersNotifiedOfAutoscaling] IS NOT NULL)
|
||||
BEGIN
|
||||
UPDATE [dbo].[Organization]
|
||||
SET MaxAutoscaleSeats = Seats
|
||||
END
|
1492
util/MySqlMigrations/Migrations/20211021201150_SetMaxAutoscaleSeatsToCurrentSeatCount.Designer.cs
generated
Normal file
1492
util/MySqlMigrations/Migrations/20211021201150_SetMaxAutoscaleSeatsToCurrentSeatCount.Designer.cs
generated
Normal file
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,22 @@
|
||||
using System;
|
||||
using Bit.Core.Utilities;
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
|
||||
namespace Bit.MySqlMigrations.Migrations
|
||||
{
|
||||
public partial class SetMaxAutoscaleSeatsToCurrentSeatCount : Migration
|
||||
{
|
||||
private const string _scriptLocation =
|
||||
"MySqlMigrations.Scripts.2021-10-21_00_SetMaxAutoscaleSeatCount.sql";
|
||||
|
||||
protected override void Up(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.Sql(CoreHelpers.GetEmbeddedResourceContentsAsync(_scriptLocation));
|
||||
}
|
||||
|
||||
protected override void Down(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
throw new Exception("Irreversible migration");
|
||||
}
|
||||
}
|
||||
}
|
@ -18,8 +18,10 @@
|
||||
|
||||
<ItemGroup>
|
||||
<None Remove="Scripts\2021-09-21_01_SplitManageCollectionsPermission.sql" />
|
||||
<None Remove="Scripts\2021-10-21_00_SetMaxAutoscaleSeatCount.sql" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<EmbeddedResource Include="Scripts\2021-09-21_01_SplitManageCollectionsPermission.sql" />
|
||||
<EmbeddedResource Include="Scripts\2021-10-21_00_SetMaxAutoscaleSeatCount.sql" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
|
@ -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;
|
1501
util/PostgresMigrations/Migrations/20211021204521_SetMaxAutoscaleSeatsToCurrentSeatCount.Designer.cs
generated
Normal file
1501
util/PostgresMigrations/Migrations/20211021204521_SetMaxAutoscaleSeatsToCurrentSeatCount.Designer.cs
generated
Normal file
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,22 @@
|
||||
using System;
|
||||
using Bit.Core.Utilities;
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
|
||||
namespace Bit.PostgresMigrations.Migrations
|
||||
{
|
||||
public partial class SetMaxAutoscaleSeatsToCurrentSeatCount : Migration
|
||||
{
|
||||
private const string _scriptLocation =
|
||||
"PostgresMigration.Scripts.2021-10-21_00_SetMaxAutoscaleSeatCount.sql";
|
||||
|
||||
protected override void Up(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.Sql(CoreHelpers.GetEmbeddedResourceContentsAsync(_scriptLocation));
|
||||
}
|
||||
|
||||
protected override void Down(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
throw new Exception("Irreversible migration");
|
||||
}
|
||||
}
|
||||
}
|
@ -18,8 +18,10 @@
|
||||
|
||||
<ItemGroup>
|
||||
<None Remove="Scripts\2021-09-21_01_SplitManageCollectionsPermission.psql" />
|
||||
<None Remove="Scripts\2021-10-21_00_SetMaxAutoscaleSeatCount.psql" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<EmbeddedResource Include="Scripts\2021-09-21_01_SplitManageCollectionsPermission.psql" />
|
||||
<EmbeddedResource Include="Scripts\2021-10-21_00_SetMaxAutoscaleSeatCount.psql" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
|
@ -0,0 +1,4 @@
|
||||
UPDATE "Organization"
|
||||
SET "MaxAutoscaleSeats" = "Seats"
|
||||
WHERE NOT EXISTS (SELECT 1 FROM "Organization" WHERE "MaxAutoscaleSeats" IS NOT NULL LIMIT 1)
|
||||
AND NOT EXISTS (SELECT 1 FROM "Organization" WHERE "OwnersNotifiedOfAutoscaling" IS NOT NULL LIMIT 1)
|
Loading…
x
Reference in New Issue
Block a user