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