mirror of
https://github.com/bitwarden/server
synced 2026-01-03 00:53:37 +00:00
SubvaultUser APIs and services
This commit is contained in:
10
src/Sql/dbo/Tables/Group.sql
Normal file
10
src/Sql/dbo/Tables/Group.sql
Normal file
@@ -0,0 +1,10 @@
|
||||
CREATE TABLE [dbo].[Group] (
|
||||
[Id] UNIQUEIDENTIFIER NOT NULL,
|
||||
[OrganizationId] UNIQUEIDENTIFIER NOT NULL,
|
||||
[Name] NVARCHAR (50) NOT NULL,
|
||||
[CreationDate] DATETIME NOT NULL,
|
||||
[RevisionDate] DATETIME NOT NULL,
|
||||
CONSTRAINT [PK_Group] PRIMARY KEY CLUSTERED ([Id] ASC),
|
||||
CONSTRAINT [FK_Group_Organization] FOREIGN KEY ([OrganizationId]) REFERENCES [dbo].[Organization] ([Id])
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user