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-09-02_02_DropGroupAccessAll_DropColumn.sql

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

26 lines
498 B
MySQL
Raw Normal View History

-- Finalise removal of Group.AccessAll column
-- Drop the column
IF OBJECT_ID('[dbo].[DF_Group_AccessAll]', 'D') IS NOT NULL
BEGIN
ALTER TABLE [dbo].[Group]
DROP CONSTRAINT [DF_Group_AccessAll];
END
GO
IF COL_LENGTH('[dbo].[Group]', 'AccessAll') IS NOT NULL
BEGIN
ALTER TABLE
[dbo].[Group]
DROP COLUMN
[AccessAll]
END
GO
-- Refresh views
IF OBJECT_ID('[dbo].[GroupView]') IS NOT NULL
BEGIN
EXECUTE sp_refreshsqlmodule N'[dbo].[GroupView]';
END
GO