1
0
mirror of https://github.com/bitwarden/server.git synced 2024-11-22 12:15:36 +01:00
bitwarden-server/util/Migrator/DbScripts/2024-05-23_00_DropEnableCollectionEnhancements.sql
Thomas Rittson be41865b59
[AC-2522] Remove collection enhancements opt-in (#4110)
* Delete controller endpoint
* Delete command
* Drop sproc
2024-05-24 09:00:04 +10:00

6 lines
160 B
Transact-SQL

IF OBJECT_ID('[dbo].[Organization_EnableCollectionEnhancements]') IS NOT NULL
BEGIN
DROP PROCEDURE [dbo].[Organization_EnableCollectionEnhancements]
END
GO