1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-02 16:42:50 -05:00

Drop view if exists

This commit is contained in:
Bernd Schoolmann
2025-06-05 15:18:02 +02:00
parent 042d924d19
commit fa2e314c4f

View File

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