psa.DomainServices
Overview
Column Descriptions
id –
dom_id –
type –
status –
parameters_id –
ipCollectionId –
Table Structure
CREATE TABLE `DomainServices` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`dom_id` int(10) unsigned NOT NULL,
`type` enum('mail','tomcat','maillists','web') DEFAULT NULL,
`status` bigint(20) unsigned NOT NULL DEFAULT '0',
`parameters_id` int(10) unsigned DEFAULT NULL,
`ipCollectionId` int(10) unsigned DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `dom_id` (`dom_id`),
KEY `parameters_id` (`parameters_id`)
) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=latin1