psa.forwarding

Overview
The forwarding table contains the forwarding configuration for domains that use standard or frame forwarding.

Column Descriptions
dom_id - links to id in domains table
ip_address_id - links to id in IP_Addresses table
redirect - URL to redirect to

Table Structure

CREATE TABLE `forwarding` (
 `dom_id` INT(10) UNSIGNED NOT NULL DEFAULT '0',
 `ip_address_id` INT(10) UNSIGNED NOT NULL DEFAULT '0',
 `redirect` VARCHAR(255) character SET utf8 DEFAULT NULL,
 PRIMARY KEY  (`dom_id`),
 KEY `ip_address_id` (`ip_address_id`)
) ENGINE=INNODB DEFAULT CHARSET=latin1

Related documentation