Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
Open sidebar
ISPConfig
ISPConfig 3
Commits
213e0bc6
Commit
213e0bc6
authored
Oct 30, 2013
by
Falko Timme
Browse files
- Company ID can now have a length of up to 255 characters (instead of just 30).
parent
eedc0531
Changes
3
Hide whitespace changes
Inline
Side-by-side
install/sql/incremental/upd_0059.sql
0 → 100644
View file @
213e0bc6
ALTER
TABLE
`client`
CHANGE
`company_id`
`company_id`
VARCHAR
(
255
)
NULL
DEFAULT
NULL
;
\ No newline at end of file
install/sql/ispconfig3.sql
View file @
213e0bc6
...
...
@@ -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
,
...
...
interface/web/client/form/client.tform.php
View file @
213e0bc6
...
...
@@ -356,7 +356,7 @@ $form["tabs"]['address'] = array (
'value'
=>
''
,
'separator'
=>
''
,
'width'
=>
'30'
,
'maxlength'
=>
'2
0
'
,
'maxlength'
=>
'2
55
'
,
'rows'
=>
''
,
'cols'
=>
''
),
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment