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