Skip to content

Commit 213e0bc

Browse files
committed
- Company ID can now have a length of up to 255 characters (instead of just 30).
1 parent eedc053 commit 213e0bc

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ALTER TABLE `client` CHANGE `company_id` `company_id` VARCHAR( 255 ) NULL DEFAULT NULL ;

install/sql/ispconfig3.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ CREATE TABLE `client` (
144144
`sys_perm_group` varchar(5) DEFAULT NULL,
145145
`sys_perm_other` varchar(5) DEFAULT NULL,
146146
`company_name` varchar(64) DEFAULT NULL,
147-
`company_id` varchar(30) DEFAULT NULL,
147+
`company_id` varchar(255) DEFAULT NULL,
148148
`gender` enum('','m','f') NOT NULL DEFAULT '',
149149
`contact_name` varchar(64) DEFAULT NULL,
150150
`customer_no` varchar(64) DEFAULT NULL,

interface/web/client/form/client.tform.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@
356356
'value' => '',
357357
'separator' => '',
358358
'width' => '30',
359-
'maxlength' => '20',
359+
'maxlength' => '255',
360360
'rows' => '',
361361
'cols' => ''
362362
),

0 commit comments

Comments
 (0)