diff options
author | Jamie Rumbelow <jamie@jamierumbelow.net> | 2012-04-26 14:38:44 +0200 |
---|---|---|
committer | Jamie Rumbelow <jamie@jamierumbelow.net> | 2012-04-26 14:38:44 +0200 |
commit | 606d246d7583a42582c9c283bc2163fec68d30eb (patch) | |
tree | 0eaa12da6820cdc7ace47cf981d74b7b2bc05cd6 /user_guide_src/source | |
parent | d6ce1e936d60487ad8ddd099a040fba7d8f88367 (diff) |
Adding some update notes for 3.0.0 (renaming AR to QB)
Diffstat (limited to 'user_guide_src/source')
-rw-r--r-- | user_guide_src/source/installation/upgrade_300.rst | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/user_guide_src/source/installation/upgrade_300.rst b/user_guide_src/source/installation/upgrade_300.rst index 4c594ab17..e434e8d45 100644 --- a/user_guide_src/source/installation/upgrade_300.rst +++ b/user_guide_src/source/installation/upgrade_300.rst @@ -31,3 +31,13 @@ Step 3: Remove $autoload['core'] from your config/autoload.php Use of the `$autoload['core']` config array has been deprecated as of CodeIgniter 1.4.1 and is now removed. Move any entries that you might have listed there to `$autoload['libraries']` instead. + +Step 4: Update your config/database.php +======================================= + +Due to 3.0.0's renaming of Active Record to Query Builder, inside your _config/database.php_, you will +need to rename the `$active_record` variable to `$query_builder`. + + $active_group = 'default'; + // $active_record = TRUE; + $query_builder = TRUE;
\ No newline at end of file |