diff options
author | Florian Pritz <bluewind@xinu.at> | 2017-12-02 18:54:41 +0100 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2017-12-02 18:54:41 +0100 |
commit | 7cb300b82ac380468ba40da4eed0eb35a7420089 (patch) | |
tree | 90e672efd9e2fb493d73d5ef25210d5283ad2956 /application/config/example | |
parent | 76a51008c30fbb7fb7b75e7ac5c5eca277156624 (diff) |
Fix DB settings for postgres which doesn't use utf8mb43.0.1
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'application/config/example')
-rw-r--r-- | application/config/example/database.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/application/config/example/database.php b/application/config/example/database.php index 6b71bf60b..002faff17 100644 --- a/application/config/example/database.php +++ b/application/config/example/database.php @@ -86,8 +86,8 @@ $db['default'] = array( 'db_debug' => TRUE, 'cache_on' => FALSE, 'cachedir' => '', - 'char_set' => 'utf8mb4', - 'dbcollat' => 'utf8mb4_bin', + 'char_set' => 'utf8mb4', // if you use postgres, set this to utf8 + 'dbcollat' => 'utf8mb4_bin', // if you use postgres, set this to utf8_bin 'swap_pre' => '', 'encrypt' => FALSE, 'compress' => FALSE, |