1
0
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:
Bernd Schoolmann 2025-06-05 15:18:02 +02:00
parent 042d924d19
commit fa2e314c4f
No known key found for this signature in database

View File

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