mirror of
https://github.com/bitwarden/server.git
synced 2025-06-07 03:30:32 -05:00
Drop view if exists
This commit is contained in:
parent
042d924d19
commit
fa2e314c4f
@ -11,6 +11,12 @@ CREATE TABLE [dbo].[UserSignatureKeyPair] (
|
||||
);
|
||||
GO
|
||||
|
||||
IF EXISTS(SELECT * FROM sys.views WHERE [Name] = 'UserSignatureKeyPairView')
|
||||
BEGIN
|
||||
DROP VIEW [dbo].[UserSignatureKeyPairView]
|
||||
END
|
||||
GO
|
||||
|
||||
CREATE VIEW [dbo].[UserSignatureKeyPairView]
|
||||
AS
|
||||
SELECT
|
||||
|
Loading…
x
Reference in New Issue
Block a user