mirror of
https://github.com/bitwarden/server.git
synced 2025-06-30 07:36:14 -05:00
DB support for SSO config
This commit is contained in:
12
util/Migrator/DbScripts/2020-06-16_00_OrgSso.sql
Normal file
12
util/Migrator/DbScripts/2020-06-16_00_OrgSso.sql
Normal file
@ -0,0 +1,12 @@
|
||||
IF OBJECT_ID('[dbo].[SsoConfig]') IS NULL
|
||||
BEGIN
|
||||
CREATE TABLE [dbo].[SsoConfig] (
|
||||
[OrganizationId] UNIQUEIDENTIFIER NULL,
|
||||
[Identifier] NVARCHAR (50) NULL,
|
||||
[Data] NVARCHAR (MAX) NULL,
|
||||
[CreationDate] DATETIME2 (7) NOT NULL,
|
||||
[RevisionDate] DATETIME2 (7) NOT NULL,
|
||||
CONSTRAINT [FK_SsoConfig_Organization] FOREIGN KEY ([OrganizationId]) REFERENCES [dbo].[Organization] ([Id])
|
||||
);
|
||||
END
|
||||
GO
|
Reference in New Issue
Block a user