psa.Limits
Overview
The Limits
table contains information about resource usage limits for clients and domains.
Column Descriptions
id – primary key that is automatically incremented, linked to limits_id
in domains
and clients
tables
limit_name – the type of resource being limited
value – the limit of the resource
Table Structure
CREATE TABLE `Limits` ( `id` int(10) unsigned NOT NULL auto_increment, `limit_name` varchar(245) character set ascii NOT NULL default '', `value` varbinary(255) default NULL, PRIMARY KEY (`id`,`limit_name`) ) ENGINE=InnoDB AUTO_INCREMENT=199 DEFAULT CHARSET=latin1 |