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 enoughpull/169/head
parent
93ddf5139b
commit
37aa55a472
|
@ -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',
|
||||
|
|
Loading…
Reference in New Issue