1
0
mirror of https://github.com/bitwarden/server synced 2026-01-18 16:33:29 +00:00

collection externalId

This commit is contained in:
Kyle Spearrin
2019-03-07 15:18:27 -05:00
parent 2684de0fff
commit 75f01a5774
14 changed files with 232 additions and 9 deletions

View File

@@ -2,6 +2,7 @@
@Id UNIQUEIDENTIFIER,
@OrganizationId UNIQUEIDENTIFIER,
@Name VARCHAR(MAX),
@ExternalId NVARCHAR(300),
@CreationDate DATETIME2(7),
@RevisionDate DATETIME2(7)
AS
@@ -13,6 +14,7 @@ BEGIN
[Id],
[OrganizationId],
[Name],
[ExternalId],
[CreationDate],
[RevisionDate]
)
@@ -21,6 +23,7 @@ BEGIN
@Id,
@OrganizationId,
@Name,
@ExternalId,
@CreationDate,
@RevisionDate
)