Commit 213e0bc6 authored by Falko Timme's avatar Falko Timme
Browse files

- Company ID can now have a length of up to 255 characters (instead of just 30).

parent eedc0531
ALTER TABLE `client` CHANGE `company_id` `company_id` VARCHAR( 255 ) NULL DEFAULT NULL ;
\ No newline at end of file
......@@ -144,7 +144,7 @@ CREATE TABLE `client` (
`sys_perm_group` varchar(5) DEFAULT NULL,
`sys_perm_other` varchar(5) DEFAULT NULL,
`company_name` varchar(64) DEFAULT NULL,
`company_id` varchar(30) DEFAULT NULL,
`company_id` varchar(255) DEFAULT NULL,
`gender` enum('','m','f') NOT NULL DEFAULT '',
`contact_name` varchar(64) DEFAULT NULL,
`customer_no` varchar(64) DEFAULT NULL,
......
......@@ -356,7 +356,7 @@ $form["tabs"]['address'] = array (
'value' => '',
'separator' => '',
'width' => '30',
'maxlength' => '20',
'maxlength' => '255',
'rows' => '',
'cols' => ''
),
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment