mirror of
https://github.com/bitwarden/server.git
synced 2025-01-03 18:57:35 +01:00
6 lines
165 B
Transact-SQL
6 lines
165 B
Transact-SQL
alter table [organization] add [UseGroups] bit null
|
|
go
|
|
update [organization] set UseGroups = 0
|
|
go
|
|
alter table [organization] alter column [UseGroups] bit not null
|
|
go |