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
Zvonimir
ISPConfig 3
Commits
ae171fab
Commit
ae171fab
authored
Oct 05, 2012
by
mcramer
Browse files
Updated: client additional template db column had varchar(255) which was too small in some cases
parent
52846bbb
Changes
2
Hide whitespace changes
Inline
Side-by-side
install/sql/incremental/upd_0042.sql
0 → 100644
View file @
ae171fab
-- increase column size
ALTER
TABLE
`client`
CHANGE
`template_additional`
`template_additional`
TEXT
NOT
NULL
DEFAULT
''
;
install/sql/ispconfig3.sql
View file @
ae171fab
...
...
@@ -221,7 +221,7 @@ CREATE TABLE `client` (
`language`
char
(
2
)
NOT
NULL
DEFAULT
'en'
,
`usertheme`
varchar
(
32
)
NOT
NULL
DEFAULT
'default'
,
`template_master`
int
(
11
)
unsigned
NOT
NULL
DEFAULT
'0'
,
`template_additional`
varchar
(
255
)
NOT
NULL
DEFAULT
''
,
`template_additional`
text
NOT
NULL
DEFAULT
''
,
`created_at`
bigint
(
20
)
DEFAULT
NULL
,
`id_rsa`
varchar
(
2000
)
NOT
NULL
DEFAULT
''
,
`ssh_rsa`
varchar
(
600
)
NOT
NULL
DEFAULT
''
,
...
...
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