Updates
[lhc/web/wiklou.git] / maintenance / archives / patch-rename-group.sql
1 -- Rename groups table to groups, which is not a keyword
2 -- It was called group in a few alpha versions
3
4 RENAME TABLE /*$wgDBprefix*/`group` TO /*$wgDBprefix*/groups;
5 ALTER TABLE /*$wgDBprefix*/groups
6 CHANGE group_id gr_id int(5) unsigned NOT NULL auto_increment,
7 CHANGE group_name gr_name varchar(50) NOT NULL default '',
8 CHANGE group_description gr_description varchar(255) NOT NULL default '',
9 CHANGE group_rights gr_rights tinyblob;
10