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

Related documentation