Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
ISPConfig
ISPConfig 3
Commits
ae171fab
Commit
ae171fab
authored
Oct 05, 2012
by
mcramer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
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
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
install/sql/incremental/upd_0042.sql
install/sql/incremental/upd_0042.sql
+4
-0
install/sql/ispconfig3.sql
install/sql/ispconfig3.sql
+1
-1
No files found.
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
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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