updated maximum length of the server hostname

most of the urls I have are very long and it needs to have a larger value. 100 is simply not enough
This commit is contained in:
Sudarshan Anbazhagan 2015-01-08 01:52:22 +05:30
parent 93ddf5139b
commit 37aa55a472
1 changed files with 1 additions and 1 deletions

View File

@ -210,7 +210,7 @@ class Installer {
) ENGINE=MyISAM DEFAULT CHARSET=utf8;",
PSM_DB_PREFIX . 'servers' => "CREATE TABLE `" . PSM_DB_PREFIX . "servers` (
`server_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`ip` varchar(100) NOT NULL,
`ip` varchar(500) NOT NULL,
`port` int(5) unsigned NOT NULL,
`label` varchar(255) NOT NULL,
`type` enum('service','website') NOT NULL default 'service',