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:
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
Reference in New Issue
Block a user