The core infrastructure backend (API, database, Docker, etc).
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
-- 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]
|
|
|