mirror of
https://github.com/bitwarden/server.git
synced 2024-11-28 13:15:12 +01:00
12 lines
463 B
MySQL
12 lines
463 B
MySQL
|
-- Finalise removal of OrganizationUser.AccessAll column
|
||
|
-- Add default column value
|
||
|
-- Sprocs already have default value for rollback purposes, this just supports dropping the column itself
|
||
|
|
||
|
IF OBJECT_ID('[dbo].[DF_OrganizationUser_AccessAll]', 'D') IS NULL
|
||
|
AND COL_LENGTH('[dbo].[OrganizationUser]', 'AccessAll') IS NOT NULL
|
||
|
BEGIN
|
||
|
ALTER TABLE [dbo].[OrganizationUser]
|
||
|
ADD CONSTRAINT [DF_OrganizationUser_AccessAll] DEFAULT (0) FOR [AccessAll];
|
||
|
END
|
||
|
GO
|