1
0
mirror of https://github.com/bitwarden/server synced 2026-01-09 03:53:42 +00:00

group external id

This commit is contained in:
Kyle Spearrin
2017-05-12 14:02:33 -04:00
parent 5a6e189e67
commit 5d595d4cf9
8 changed files with 15 additions and 2 deletions

View File

@@ -3,6 +3,7 @@
@OrganizationId UNIQUEIDENTIFIER,
@Name VARCHAR(MAX),
@AccessAll BIT,
@ExternalId NVARCHAR(50),
@CreationDate DATETIME2(7),
@RevisionDate DATETIME2(7)
AS
@@ -15,6 +16,7 @@ BEGIN
[OrganizationId] = @OrganizationId,
[Name] = @Name,
[AccessAll] = @AccessAll,
[ExternalId] = @ExternalId,
[CreationDate] = @CreationDate,
[RevisionDate] = @RevisionDate
WHERE