mirror of
https://github.com/bitwarden/server.git
synced 2025-07-02 00:22:50 -05:00
fixing double brackets
This commit is contained in:
@ -3,7 +3,7 @@ IF COL_LENGTH('[dbo].[Send]', 'CipherId') IS NULL
|
||||
BEGIN
|
||||
ALTER TABLE [dbo].[Send]
|
||||
ADD [CipherId] UNIQUEIDENTIFIER NULL,
|
||||
CONSTRAINT [FK_Send_Cipher] FOREIGN KEY ([CipherId]) REFERENCES [dbo].[Cipher]([[Id]]);
|
||||
CONSTRAINT [FK_Send_Cipher] FOREIGN KEY ([CipherId]) REFERENCES [dbo].[Cipher]([Id]);
|
||||
END
|
||||
GO
|
||||
|
||||
|
Reference in New Issue
Block a user