mirror of
https://github.com/bitwarden/server.git
synced 2024-11-22 12:15:36 +01:00
14 lines
259 B
Transact-SQL
14 lines
259 B
Transact-SQL
-- 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]
|