mirror of
https://github.com/bitwarden/server.git
synced 2025-06-12 22:10:50 -05:00
Replace with create or alter view
This commit is contained in:
parent
a33bf793e1
commit
98ec53defd
@ -11,13 +11,7 @@ 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]
|
||||
CREATE OR ALTER VIEW [dbo].[UserSignatureKeyPairView]
|
||||
AS
|
||||
SELECT
|
||||
*
|
||||
|
Loading…
x
Reference in New Issue
Block a user