psa.Permissions
Overview
The Permissions
table contains information about what permissions individual clients have on the server.
Column Descriptions
id – primary key that is automatically incremented
permission – permission keyword
value – true
if the permission is granted, otherwise false
Table Structure
CREATE TABLE `Permissions` ( `id` int(10) unsigned NOT NULL auto_increment, `permission` varchar(245) character set ascii NOT NULL default '', `value` varbinary(255) default NULL, PRIMARY KEY (`id`,`permission`) ) ENGINE=InnoDB AUTO_INCREMENT=409 DEFAULT CHARSET=latin1 |