mirror of
https://github.com/bitwarden/server.git
synced 2025-07-02 08:32:50 -05:00
Updates to SSO config DB setup
This commit is contained in:
@ -1,5 +1,6 @@
|
||||
CREATE TABLE [dbo].[Organization] (
|
||||
[Id] UNIQUEIDENTIFIER NOT NULL,
|
||||
[Identifier] NVARCHAR (50) NULL,
|
||||
[Name] NVARCHAR (50) NOT NULL,
|
||||
[BusinessName] NVARCHAR (50) NULL,
|
||||
[BusinessAddress1] NVARCHAR (50) NULL,
|
||||
@ -42,3 +43,6 @@ CREATE NONCLUSTERED INDEX [IX_Organization_Enabled]
|
||||
ON [dbo].[Organization]([Id] ASC, [Enabled] ASC)
|
||||
INCLUDE ([UseTotp]);
|
||||
|
||||
GO
|
||||
CREATE NONCLUSTERED INDEX [IX_Organization_Identifier]
|
||||
ON [dbo].[Organization]([Identifier] ASC)
|
||||
|
@ -1,8 +1,11 @@
|
||||
CREATE TABLE [dbo].[SsoConfig] (
|
||||
[OrganizationId] UNIQUEIDENTIFIER NULL,
|
||||
[Id] BIGINT IDENTITY (1, 1) NOT NULL,
|
||||
[Enabled] BIT NOT NULL,
|
||||
[OrganizationId] UNIQUEIDENTIFIER NOT NULL,
|
||||
[Identifier] NVARCHAR (50) NULL,
|
||||
[Data] NVARCHAR (MAX) NULL,
|
||||
[CreationDate] DATETIME2 (7) NOT NULL,
|
||||
[RevisionDate] DATETIME2 (7) NOT NULL,
|
||||
CONSTRAINT [PK_SsoConfig] PRIMARY KEY CLUSTERED ([Id] ASC),
|
||||
CONSTRAINT [FK_SsoConfig_Organization] FOREIGN KEY ([OrganizationId]) REFERENCES [dbo].[Organization] ([Id])
|
||||
);
|
||||
|
@ -1,6 +1,8 @@
|
||||
CREATE VIEW [dbo].[SsoConfigView]
|
||||
AS
|
||||
SELECT
|
||||
*
|
||||
SSO.*
|
||||
FROM
|
||||
[dbo].[SsoConfig]
|
||||
[dbo].[SsoConfig] SSO
|
||||
INNER JOIN
|
||||
[dbo].[Organization] O ON O.[Identifier] = SSO.[Identifier]
|
||||
|
Reference in New Issue
Block a user