psa.dom_level_usrs
Overview
The dom_level_usrs table contains details about domain administrators on the server.
Column Descriptions
dom_id – links to id in domains table
account_id – links to id in accounts table
state – true if enabled, otherwise false
card_id – links to id in Cards table
perm_id – links to id in Permissions table
Table Structure
CREATE TABLE `dom_level_usrs` ( `dom_id` int(10) unsigned NOT NULL default '0', `account_id` int(10) unsigned default NULL, `state` enum('false','true') NOT NULL default 'false', `card_id` int(10) unsigned default NULL, `perm_id` int(10) unsigned default NULL, PRIMARY KEY (`dom_id`), KEY `dom_id` (`dom_id`), KEY `account_id` (`account_id`), KEY `card_id` (`card_id`), KEY `perm_id` (`perm_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1