psa.DomainServices
Overview
Column Descriptions
id –
dom_id –
type –
status –
parameters_id –
ipCollectionId –
Table Structure
1 2 3 4 5 6 7 8 9 10 11 | 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 |