psa.dom_param
Overview
The dom_param
table contains parameters at the domain level, including log rotation and Plesk interface customization.
Column Descriptions
dom_id – links to id
in domains
table
param – parameter keyword
val – value corresponding to the parameter keyword
Table Structure
CREATE TABLE `dom_param` ( `dom_id` int(10) unsigned NOT NULL default '0', `param` varchar(245) character set ascii NOT NULL default '', `val` varbinary(255) default NULL, PRIMARY KEY (`dom_id`,`param`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 |