1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-16 15:17:33 -05:00

PM-20574 fixing sql

This commit is contained in:
Graham Walker
2025-06-13 15:15:43 -05:00
parent 093731bbb6
commit 85c4837714
11 changed files with 1172 additions and 14 deletions

View File

@ -17,13 +17,7 @@ BEGIN
END
GO
IF OBJECT_ID('dbo.OrganizationReportView') IS NOT NULL
BEGIN
DROP VIEW [dbo].[OrganizationReportView]
END
GO
CREATE VIEW [dbo].[OrganizationReportView] AS
CREATE OR ALTER VIEW [dbo].[OrganizationReportView] AS
SELECT * FROM [dbo].[OrganizationReport];
GO

View File

@ -15,13 +15,7 @@ BEGIN
END
GO
IF OBJECT_ID('dbo.OrganizationApplicationView') IS NOT NULL
BEGIN
DROP VIEW [dbo].[OrganizationApplicationView];
END
GO
CREATE VIEW [dbo].[OrganizationApplicationView] AS
CREATE OR ALTER VIEW [dbo].[OrganizationApplicationView] AS
SELECT * FROM [dbo].[OrganizationApplication];
GO