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
Guilherme Filippo
ISPConfig 3
Commits
68c5cce0
Commit
68c5cce0
authored
Sep 26, 2011
by
tbrehm
Browse files
Changed max. length for session hash keys from 32 chars to 64 chars in the mysql database.
parent
bcb8eb94
Changes
2
Hide whitespace changes
Inline
Side-by-side
install/sql/incremental/upd_0023.sql
0 → 100644
View file @
68c5cce0
ALTER
TABLE
`sys_session`
CHANGE
`session_id`
`session_id`
VARCHAR
(
64
)
CHARACTER
SET
latin1
COLLATE
latin1_swedish_ci
NOT
NULL
;
\ No newline at end of file
install/sql/ispconfig3.sql
View file @
68c5cce0
...
...
@@ -1375,7 +1375,7 @@ CREATE TABLE `sys_remoteaction` (
--
CREATE
TABLE
`sys_session`
(
`session_id`
varchar
(
32
)
NOT
NULL
DEFAULT
''
,
`session_id`
varchar
(
64
)
NOT
NULL
DEFAULT
''
,
`date_created`
datetime
NOT
NULL
DEFAULT
'0000-00-00 00:00:00'
,
`last_updated`
datetime
NOT
NULL
DEFAULT
'0000-00-00 00:00:00'
,
`session_data`
longtext
,
...
...
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