1
0
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:
Bernd Schoolmann 2025-06-05 17:44:13 +02:00
parent a33bf793e1
commit 98ec53defd
No known key found for this signature in database

View File

@ -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
*