mirror of
https://github.com/bitwarden/server.git
synced 2025-04-06 21:48:12 -05:00
regenerate OrganizationView
This commit is contained in:
parent
bcc224c02d
commit
6bc9cbd761
@ -241,3 +241,17 @@ BEGIN
|
|||||||
[dbo].[Organization]
|
[dbo].[Organization]
|
||||||
END
|
END
|
||||||
GO
|
GO
|
||||||
|
|
||||||
|
IF EXISTS(SELECT * FROM sys.views WHERE [Name] = 'OrganizationView')
|
||||||
|
BEGIN
|
||||||
|
DROP VIEW [dbo].[OrganizationView]
|
||||||
|
END
|
||||||
|
GO
|
||||||
|
|
||||||
|
CREATE VIEW [dbo].[OrganizationView]
|
||||||
|
AS
|
||||||
|
SELECT
|
||||||
|
*
|
||||||
|
FROM
|
||||||
|
[dbo].[Organization]
|
||||||
|
GO
|
||||||
|
Loading…
x
Reference in New Issue
Block a user