Tables/phpbb acl options
From phpBB Development Wiki
< Tables
This table contains the formation which permissions ("can read forum", "can post topics" etc.) are available. See also Permissions.
Fields
| column | type (MySQL) | content | default |
|---|---|---|---|
| auth_option_id | mediumint(8) unsigned | primary key | auto_increment |
| auth_option | varchar(50) | the name of the permission, e.g. "f_post" | |
| is_global | tinyint(1) unsigned | this permission can be granted globally (once for all forums) | 0 |
| is_local | tinyint(1) unsigned | this permission can be granted locally (individual setting for each forum) | 0 |
| founder_only | tinyint(1) unsigned | only founders can have this permission | 0 |
Keys
| name | fields |
|---|---|
| PRIMARY | auth_option_id |
| auth_option | auth_option |

