diff options
author | Greg Aker <greg.aker@ellislab.com> | 2011-04-20 18:22:09 +0200 |
---|---|---|
committer | Greg Aker <greg.aker@ellislab.com> | 2011-04-20 18:22:09 +0200 |
commit | 882b76bda8b701a8718960b8d639f060ae79e998 (patch) | |
tree | 3824aa7ef8f5f053d6315e9257dc951d1753a932 /user_guide/installation | |
parent | 1cdb0fd21e0c5ac38a75712806ed10b08f0909cc (diff) |
Fixed a bug (Reactor #231) where Sessions Library database table example SQL did not contain an index on last_activity. See <a href="installation/upgrade_203.html">Upgrade Notes</a>
Fixed a bug (Reactor #229) where the Sessions Library example SQL in the documentation contained incorrect SQL.
Diffstat (limited to 'user_guide/installation')
-rw-r--r-- | user_guide/installation/upgrade_203.html | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/user_guide/installation/upgrade_203.html b/user_guide/installation/upgrade_203.html index 38cfb72c9..d7c0fae3a 100644 --- a/user_guide/installation/upgrade_203.html +++ b/user_guide/installation/upgrade_203.html @@ -94,6 +94,16 @@ Upgrading from 2.0.2 to 2.0.3 <p>Which should provide for nominal performance gains if not autoloading packages.</p> +<h2>Update Sessions Database Tables</h2> + +<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> + CREATE INDEX last_activity_idx ON ci_sessions(last_activity); +</code> + + + </div> <!-- END CONTENT --> |