1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 05:00:19 -05:00

Forgot to add Notes column to OrganizationSponsorships table in the migration script

This commit is contained in:
Jonas Hendrickx 2025-03-26 11:56:42 +01:00
parent ba7b9073ac
commit 6c3ee36485
No known key found for this signature in database
GPG Key ID: C4B27F601CE4317D

View File

@ -4,6 +4,9 @@ ALTER TABLE [dbo].[Organization] ADD [UseAdminSponsoredFamilies] bit NOT NULL CO
ALTER TABLE [dbo].[OrganizationSponsorship] ADD [IsAdminInitiated] BIT CONSTRAINT [DF_OrganizationSponsorship_IsAdminInitiated] DEFAULT (0) NOT NULL
GO;
ALTER TABLE [dbo].[OrganizationSponsorship] ADD [Notes] NVARCHAR(512) NULL
GO;
CREATE OR ALTER PROCEDURE [dbo].[Organization_Create]
@Id UNIQUEIDENTIFIER OUTPUT,
@Identifier NVARCHAR(50),