diff options
author | Robin Appelman <icewind@owncloud.com> | 2012-01-16 02:06:19 +0100 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2012-01-16 02:06:19 +0100 |
commit | ebe10870cfe3c59edb4b2924297b6e495977eea0 (patch) | |
tree | 0e8d56bcd4c17dab3ad4461fcba271954a4d01a7 /lib/db.php | |
parent | 907dd4d24da80fa4f4ad5d6d469cd11d7c215f02 (diff) | |
download | nextcloud-server-ebe10870cfe3c59edb4b2924297b6e495977eea0.tar.gz nextcloud-server-ebe10870cfe3c59edb4b2924297b6e495977eea0.zip |
fix database upgrading for pgsql
Diffstat (limited to 'lib/db.php')
-rw-r--r-- | lib/db.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/db.php b/lib/db.php index 1a5f9874bd5..4860651b323 100644 --- a/lib/db.php +++ b/lib/db.php @@ -144,7 +144,7 @@ class OC_DB { // Prepare options array $options = array( - 'portability' => MDB2_PORTABILITY_ALL, + 'portability' => MDB2_PORTABILITY_ALL & (!MDB2_PORTABILITY_FIX_CASE), 'log_line_break' => '<br>', 'idxname_format' => '%s', 'debug' => true, |