mirror of
https://github.com/bitwarden/server
synced 2026-01-10 04:23:31 +00:00
DB support for SSO config
This commit is contained in:
8
src/Sql/dbo/Tables/SsoConfig.sql
Normal file
8
src/Sql/dbo/Tables/SsoConfig.sql
Normal file
@@ -0,0 +1,8 @@
|
||||
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])
|
||||
);
|
||||
Reference in New Issue
Block a user