mirror of
https://github.com/bitwarden/server.git
synced 2024-11-26 12:55:17 +01:00
14 lines
259 B
MySQL
14 lines
259 B
MySQL
|
-- Recreate OrganizationView so that it includes the UseScim column
|
||
|
IF OBJECT_ID('[dbo].[OrganizationView]') IS NOT NULL
|
||
|
BEGIN
|
||
|
DROP VIEW [dbo].[OrganizationView]
|
||
|
END
|
||
|
GO
|
||
|
|
||
|
CREATE VIEW [dbo].[OrganizationView]
|
||
|
AS
|
||
|
SELECT
|
||
|
*
|
||
|
FROM
|
||
|
[dbo].[Organization]
|