mirror of
https://github.com/bitwarden/server.git
synced 2026-01-31 14:13:18 +08:00
* Adding CipherId to the Send table, create/update sprocs, and added migrations * changing migrator script to drop create sprocs * fixing double brackets * Revert "changing migrator script to drop create sprocs" This reverts commit2d5171e7e5. * Remove comment I nitpicked * Script best practices * Fix typo * Try recreate again * Fix missing output * Revert "Try recreate again" This reverts commit38257ebeaa. --------- Co-authored-by: Matt Bishop <mbishop@bitwarden.com> Co-authored-by: federicom09 <fmonesiglio@bitwarden.com>
71 lines
1.4 KiB
Transact-SQL
71 lines
1.4 KiB
Transact-SQL
CREATE PROCEDURE [dbo].[Send_Create]
|
|
@Id UNIQUEIDENTIFIER OUTPUT,
|
|
@UserId UNIQUEIDENTIFIER,
|
|
@OrganizationId UNIQUEIDENTIFIER,
|
|
@Type TINYINT,
|
|
@Data VARCHAR(MAX),
|
|
@Key VARCHAR(MAX),
|
|
@Password NVARCHAR(300),
|
|
@MaxAccessCount INT,
|
|
@AccessCount INT,
|
|
@CreationDate DATETIME2(7),
|
|
@RevisionDate DATETIME2(7),
|
|
@ExpirationDate DATETIME2(7),
|
|
@DeletionDate DATETIME2(7),
|
|
@Disabled BIT,
|
|
@HideEmail BIT,
|
|
@CipherId UNIQUEIDENTIFIER = NULL
|
|
AS
|
|
BEGIN
|
|
SET NOCOUNT ON
|
|
|
|
INSERT INTO [dbo].[Send]
|
|
(
|
|
[Id],
|
|
[UserId],
|
|
[OrganizationId],
|
|
[Type],
|
|
[Data],
|
|
[Key],
|
|
[Password],
|
|
[MaxAccessCount],
|
|
[AccessCount],
|
|
[CreationDate],
|
|
[RevisionDate],
|
|
[ExpirationDate],
|
|
[DeletionDate],
|
|
[Disabled],
|
|
[HideEmail],
|
|
[CipherId]
|
|
)
|
|
VALUES
|
|
(
|
|
@Id,
|
|
@UserId,
|
|
@OrganizationId,
|
|
@Type,
|
|
@Data,
|
|
@Key,
|
|
@Password,
|
|
@MaxAccessCount,
|
|
@AccessCount,
|
|
@CreationDate,
|
|
@RevisionDate,
|
|
@ExpirationDate,
|
|
@DeletionDate,
|
|
@Disabled,
|
|
@HideEmail,
|
|
@CipherId
|
|
)
|
|
|
|
IF @UserId IS NOT NULL
|
|
BEGIN
|
|
IF @Type = 1 --File
|
|
BEGIN
|
|
EXEC [dbo].[User_UpdateStorage] @UserId
|
|
END
|
|
EXEC [dbo].[User_BumpAccountRevisionDate] @UserId
|
|
END
|
|
-- TODO: OrganizationId bump?
|
|
END
|