allow ipv6 for openvz-container
| | |
| | | ALTER TABLE `sys_datalog` ADD INDEX `dbtable` (`dbtable` (25), `dbidx` (25)), ADD INDEX (`action`); |
| | | ALTER TABLE `mail_user` ADD `greylisting` ENUM( 'n', 'y' ) NOT NULL DEFAULT 'n' AFTER `postfix`; |
| | | ALTER TABLE `mail_forwarding` ADD `greylisting` ENUM( 'n', 'y' ) NOT NULL DEFAULT 'n' AFTER `active`; |
| | | |
| | | ALTER TABLE `openvz_ip` CHANGE `ip_address` `ip_address` VARCHAR(39) DEFAULT NULL; |
| | |
| | | 'ip_address' => array ( |
| | | 'datatype' => 'VARCHAR', |
| | | 'formtype' => 'TEXT', |
| | | 'validators' => array ( 0 => array ( 'type' => 'ISIPV4', |
| | | 'errmsg'=> 'ip_error_wrong'), |
| | | 1 => array ( 'type' => 'UNIQUE', |
| | | 'errmsg'=> 'ip_error_unique'), |
| | | 'validators' => array ( |
| | | 0 => array ( 'type' => 'ISIP', 'errmsg'=> 'ip_error_wrong'), |
| | | 1 => array ( 'type' => 'UNIQUE', 'errmsg'=> 'ip_error_unique'), |
| | | ), |
| | | 'default' => '', |
| | | 'value' => '', |