Files
server/util/SqlUpdate/2017-05-08_00_OrgUseGroups.sql

6 lines
165 B
MySQL
Raw Normal View History

2017-05-08 14:22:40 -04:00
alter table [organization] add [UseGroups] bit null
go
update [organization] set UseGroups = 0
go
alter table [organization] alter column [UseGroups] bit not null
go