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

cipher updates

move cipher info to favorites and folders sprocs for getting shared
cipher information
This commit is contained in:
Kyle Spearrin
2017-03-17 09:29:46 -04:00
parent 1d3092b6b2
commit 3e0c0224b5
16 changed files with 96 additions and 64 deletions

View File

@@ -1,9 +1,8 @@
CREATE PROCEDURE [dbo].[Cipher_Create]
@Id UNIQUEIDENTIFIER,
@UserId UNIQUEIDENTIFIER,
@FolderId UNIQUEIDENTIFIER,
@OrganizationId UNIQUEIDENTIFIER,
@Type TINYINT,
@Favorite BIT,
@Data NVARCHAR(MAX),
@CreationDate DATETIME2(7),
@RevisionDate DATETIME2(7)
@@ -15,9 +14,8 @@ BEGIN
(
[Id],
[UserId],
[FolderId],
[OrganizationId],
[Type],
[Favorite],
[Data],
[CreationDate],
[RevisionDate]
@@ -26,9 +24,8 @@ BEGIN
(
@Id,
@UserId,
@FolderId,
@OrganizationId,
@Type,
@Favorite,
@Data,
@CreationDate,
@RevisionDate