diff options
author | Tim Starling <tstarling@users.mediawiki.org> | 2005-05-15 06:18:48 +0000 |
---|---|---|
committer | Tim Starling <tstarling@users.mediawiki.org> | 2005-05-15 06:18:48 +0000 |
commit | 63190801a84c5c0cf20c7547f7f15f7ab42c72ec (patch) | |
tree | 479a74a19e021f8dd1ddcd1d344e567468746381 /maintenance/tables.sql | |
parent | 2d297d4472c6cde985bb87ea9c8af1abc74089df (diff) | |
download | mediawikicore-63190801a84c5c0cf20c7547f7f15f7ab42c72ec.tar.gz mediawikicore-63190801a84c5c0cf20c7547f7f15f7ab42c72ec.zip |
Renamed group table to groups, and renamed the fields from group_xxx to gr_xxx. Added static group support to Special:Listusers.
Notes
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/9042
Diffstat (limited to 'maintenance/tables.sql')
-rw-r--r-- | maintenance/tables.sql | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/maintenance/tables.sql b/maintenance/tables.sql index 00e88a4b2ebd..9926966ed9b7 100644 --- a/maintenance/tables.sql +++ b/maintenance/tables.sql @@ -816,12 +816,12 @@ CREATE TABLE /*$wgDBprefix*/logging ( -- Hold group name and description -CREATE TABLE /*$wgDBprefix*/`group` ( - group_id int(5) unsigned NOT NULL auto_increment, - group_name varchar(50) NOT NULL default '', - group_description varchar(255) NOT NULL default '', - group_rights tinyblob, - PRIMARY KEY (group_id) +CREATE TABLE /*$wgDBprefix*/groups ( + gr_id int(5) unsigned NOT NULL auto_increment, + gr_name varchar(50) NOT NULL default '', + gr_description varchar(255) NOT NULL default '', + gr_rights tinyblob, + PRIMARY KEY (gr_id) ) TYPE=InnoDB; |