1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 21:18:13 -05:00
bitwarden/util/SqlUpdate/2017-05-08_00_OrgUseGroups.sql
2017-05-31 08:32:45 -04:00

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