patch-user_groups.sql
来自「php 开发的内容管理系统」· SQL 代码 · 共 26 行
SQL
26 行
---- User permissions have been broken out to a separate table;-- this allows sites with a shared user table to have different-- permissions assigned to a user in each project.---- This table replaces the old user_rights field which used a-- comma-separated blob.--CREATE TABLE /*$wgDBprefix*/user_groups ( -- Key to user_id ug_user int(5) unsigned NOT NULL default '0', -- Group names are short symbolic string keys. -- The set of group names is open-ended, though in practice -- only some predefined ones are likely to be used. -- -- At runtime $wgGroupPermissions will associate group keys -- with particular permissions. A user will have the combined -- permissions of any group they're explicitly in, plus -- the implicit '*' and 'user' groups. ug_group char(16) NOT NULL default '', PRIMARY KEY (ug_user,ug_group), KEY (ug_group)) TYPE=InnoDB;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?