1
0
mirror of https://github.com/bitwarden/server.git synced 2024-11-23 12:25:16 +01:00
bitwarden-server/util/Migrator/DbScripts/2024-05-23_00_DropEnableCollectionEnhancements.sql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

6 lines
160 B
MySQL
Raw Normal View History

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