diff options
author | Greg Aker <greg.aker@ellislab.com> | 2011-04-20 18:36:45 +0200 |
---|---|---|
committer | Greg Aker <greg.aker@ellislab.com> | 2011-04-20 18:36:45 +0200 |
commit | 50671cf8d67c805692fec49eda33d21227a21ec2 (patch) | |
tree | e09abb9be02ae56e7c983ad86d1531b8b1ec308d /user_guide/installation | |
parent | 882b76bda8b701a8718960b8d639f060ae79e998 (diff) |
Altered Session to use a longer match against the user_agent string. See upgrade notes if using database sessions.</li
Diffstat (limited to 'user_guide/installation')
-rw-r--r-- | user_guide/installation/upgrade_203.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/user_guide/installation/upgrade_203.html b/user_guide/installation/upgrade_203.html index d7c0fae3a..7dbc907ea 100644 --- a/user_guide/installation/upgrade_203.html +++ b/user_guide/installation/upgrade_203.html @@ -98,8 +98,9 @@ Upgrading from 2.0.2 to 2.0.3 <p>If you are using database sessions with the CI Session Library, please update your <samp>ci_sessions</samp> database table as follows:</p> -<code> +<code> CREATE INDEX last_activity_idx ON ci_sessions(last_activity); + ALTER TABLE ci_sessions MODIFY user_agent VARCHAR(120); </code> |