mirror of
https://github.com/bitwarden/server.git
synced 2025-06-30 07:36:14 -05:00
[PM-10365] Drop OrganizationUser AccessAll (#4701)
* Remove OrganizationUser.AccessAll * Final database migrations
This commit is contained in:
@ -0,0 +1,11 @@
|
||||
-- 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
|
Reference in New Issue
Block a user