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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user