mirror of
https://github.com/bitwarden/server
synced 2025-12-31 07:33:43 +00:00
* Add transition migration to populate MaxStorageGbIncreased This migration populates the MaxStorageGbIncreased column for Users and Organizations by setting it to MaxStorageGb + 4, representing the storage increase from 1GB to 5GB. This migration depends on PM-27603 being deployed first to create the MaxStorageGbIncreased column. Target release: January 6th, 2026 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> * Using batched updates to reduce lock * Add changes base on ticket adjustment * Added the dependency check * Add temporary index for performance * Resolved the conflict * resolve the syntax error * Update the migration script * Rename the file to updated date * Revert the existing merge file change * revert the change * revert renaming * rename file to updated date * Add the column after renaming * Rename other migration file to set current date --------- Co-authored-by: Claude <noreply@anthropic.com> Co-authored-by: Alex Morask <amorask@bitwarden.com> Co-authored-by: Conner Turnbull <133619638+cturnbull-bitwarden@users.noreply.github.com>
201 lines
5.4 KiB
Transact-SQL
201 lines
5.4 KiB
Transact-SQL
CREATE PROCEDURE [dbo].[Organization_Create]
|
|
@Id UNIQUEIDENTIFIER OUTPUT,
|
|
@Identifier NVARCHAR(50),
|
|
@Name NVARCHAR(50),
|
|
@BusinessName NVARCHAR(50),
|
|
@BusinessAddress1 NVARCHAR(50),
|
|
@BusinessAddress2 NVARCHAR(50),
|
|
@BusinessAddress3 NVARCHAR(50),
|
|
@BusinessCountry VARCHAR(2),
|
|
@BusinessTaxNumber NVARCHAR(30),
|
|
@BillingEmail NVARCHAR(256),
|
|
@Plan NVARCHAR(50),
|
|
@PlanType TINYINT,
|
|
@Seats INT,
|
|
@MaxCollections SMALLINT,
|
|
@UsePolicies BIT,
|
|
@UseSso BIT,
|
|
@UseGroups BIT,
|
|
@UseDirectory BIT,
|
|
@UseEvents BIT,
|
|
@UseTotp BIT,
|
|
@Use2fa BIT,
|
|
@UseApi BIT,
|
|
@UseResetPassword BIT,
|
|
@SelfHost BIT,
|
|
@UsersGetPremium BIT,
|
|
@Storage BIGINT,
|
|
@MaxStorageGb SMALLINT,
|
|
@Gateway TINYINT,
|
|
@GatewayCustomerId VARCHAR(50),
|
|
@GatewaySubscriptionId VARCHAR(50),
|
|
@ReferenceData VARCHAR(MAX),
|
|
@Enabled BIT,
|
|
@LicenseKey VARCHAR(100),
|
|
@PublicKey VARCHAR(MAX),
|
|
@PrivateKey VARCHAR(MAX),
|
|
@TwoFactorProviders NVARCHAR(MAX),
|
|
@ExpirationDate DATETIME2(7),
|
|
@CreationDate DATETIME2(7),
|
|
@RevisionDate DATETIME2(7),
|
|
@OwnersNotifiedOfAutoscaling DATETIME2(7),
|
|
@MaxAutoscaleSeats INT,
|
|
@UseKeyConnector BIT = 0,
|
|
@UseScim BIT = 0,
|
|
@UseCustomPermissions BIT = 0,
|
|
@UseSecretsManager BIT = 0,
|
|
@Status TINYINT = 0,
|
|
@UsePasswordManager BIT = 1,
|
|
@SmSeats INT = null,
|
|
@SmServiceAccounts INT = null,
|
|
@MaxAutoscaleSmSeats INT= null,
|
|
@MaxAutoscaleSmServiceAccounts INT = null,
|
|
@SecretsManagerBeta BIT = 0,
|
|
@LimitCollectionCreation BIT = NULL,
|
|
@LimitCollectionDeletion BIT = NULL,
|
|
@AllowAdminAccessToAllCollectionItems BIT = 0,
|
|
@UseRiskInsights BIT = 0,
|
|
@LimitItemDeletion BIT = 0,
|
|
@UseOrganizationDomains BIT = 0,
|
|
@UseAdminSponsoredFamilies BIT = 0,
|
|
@SyncSeats BIT = 0,
|
|
@UseAutomaticUserConfirmation BIT = 0,
|
|
@UsePhishingBlocker BIT = 0
|
|
AS
|
|
BEGIN
|
|
SET NOCOUNT ON
|
|
|
|
INSERT INTO [dbo].[Organization]
|
|
(
|
|
[Id],
|
|
[Identifier],
|
|
[Name],
|
|
[BusinessName],
|
|
[BusinessAddress1],
|
|
[BusinessAddress2],
|
|
[BusinessAddress3],
|
|
[BusinessCountry],
|
|
[BusinessTaxNumber],
|
|
[BillingEmail],
|
|
[Plan],
|
|
[PlanType],
|
|
[Seats],
|
|
[MaxCollections],
|
|
[UsePolicies],
|
|
[UseSso],
|
|
[UseGroups],
|
|
[UseDirectory],
|
|
[UseEvents],
|
|
[UseTotp],
|
|
[Use2fa],
|
|
[UseApi],
|
|
[UseResetPassword],
|
|
[SelfHost],
|
|
[UsersGetPremium],
|
|
[Storage],
|
|
[MaxStorageGb],
|
|
[Gateway],
|
|
[GatewayCustomerId],
|
|
[GatewaySubscriptionId],
|
|
[ReferenceData],
|
|
[Enabled],
|
|
[LicenseKey],
|
|
[PublicKey],
|
|
[PrivateKey],
|
|
[TwoFactorProviders],
|
|
[ExpirationDate],
|
|
[CreationDate],
|
|
[RevisionDate],
|
|
[OwnersNotifiedOfAutoscaling],
|
|
[MaxAutoscaleSeats],
|
|
[UseKeyConnector],
|
|
[UseScim],
|
|
[UseCustomPermissions],
|
|
[UseSecretsManager],
|
|
[Status],
|
|
[UsePasswordManager],
|
|
[SmSeats],
|
|
[SmServiceAccounts],
|
|
[MaxAutoscaleSmSeats],
|
|
[MaxAutoscaleSmServiceAccounts],
|
|
[SecretsManagerBeta],
|
|
[LimitCollectionCreation],
|
|
[LimitCollectionDeletion],
|
|
[AllowAdminAccessToAllCollectionItems],
|
|
[UseRiskInsights],
|
|
[LimitItemDeletion],
|
|
[UseOrganizationDomains],
|
|
[UseAdminSponsoredFamilies],
|
|
[SyncSeats],
|
|
[UseAutomaticUserConfirmation],
|
|
[UsePhishingBlocker],
|
|
[MaxStorageGbIncreased]
|
|
)
|
|
VALUES
|
|
(
|
|
@Id,
|
|
@Identifier,
|
|
@Name,
|
|
@BusinessName,
|
|
@BusinessAddress1,
|
|
@BusinessAddress2,
|
|
@BusinessAddress3,
|
|
@BusinessCountry,
|
|
@BusinessTaxNumber,
|
|
@BillingEmail,
|
|
@Plan,
|
|
@PlanType,
|
|
@Seats,
|
|
@MaxCollections,
|
|
@UsePolicies,
|
|
@UseSso,
|
|
@UseGroups,
|
|
@UseDirectory,
|
|
@UseEvents,
|
|
@UseTotp,
|
|
@Use2fa,
|
|
@UseApi,
|
|
@UseResetPassword,
|
|
@SelfHost,
|
|
@UsersGetPremium,
|
|
@Storage,
|
|
@MaxStorageGb,
|
|
@Gateway,
|
|
@GatewayCustomerId,
|
|
@GatewaySubscriptionId,
|
|
@ReferenceData,
|
|
@Enabled,
|
|
@LicenseKey,
|
|
@PublicKey,
|
|
@PrivateKey,
|
|
@TwoFactorProviders,
|
|
@ExpirationDate,
|
|
@CreationDate,
|
|
@RevisionDate,
|
|
@OwnersNotifiedOfAutoscaling,
|
|
@MaxAutoscaleSeats,
|
|
@UseKeyConnector,
|
|
@UseScim,
|
|
@UseCustomPermissions,
|
|
@UseSecretsManager,
|
|
@Status,
|
|
@UsePasswordManager,
|
|
@SmSeats,
|
|
@SmServiceAccounts,
|
|
@MaxAutoscaleSmSeats,
|
|
@MaxAutoscaleSmServiceAccounts,
|
|
@SecretsManagerBeta,
|
|
@LimitCollectionCreation,
|
|
@LimitCollectionDeletion,
|
|
@AllowAdminAccessToAllCollectionItems,
|
|
@UseRiskInsights,
|
|
@LimitItemDeletion,
|
|
@UseOrganizationDomains,
|
|
@UseAdminSponsoredFamilies,
|
|
@SyncSeats,
|
|
@UseAutomaticUserConfirmation,
|
|
@UsePhishingBlocker,
|
|
@MaxStorageGb
|
|
);
|
|
END
|