summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-10-07 19:11:06 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-10-07 19:11:06 +0000
commit3ec144d0ef0391bd959b5f4b39b725a0f68472e6 (patch)
tree438b13850bdf4d9efdfaf73636bb87f469288971
parent0619181f40510dcb2429573dda0bf3cdcc5cd57f (diff)
- fix for postgresql
git-svn-id: https://svn.roundcube.net/trunk@1955 208e9e7b-5314-0410-a742-e7e81cd9613c
-rw-r--r--roundcubemail/bin/dumpschema.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/roundcubemail/bin/dumpschema.php b/roundcubemail/bin/dumpschema.php
index 9c9c7b81b..da82f7392 100644
--- a/roundcubemail/bin/dumpschema.php
+++ b/roundcubemail/bin/dumpschema.php
@@ -44,12 +44,15 @@ $options = array(
'debug' => false,
'quote_identifier' => true,
'force_defaults' => false,
- 'portability' => false
+ 'portability' => false,
+ 'disable_smart_seqname' => true,
+ 'seqname_format' => '%s'
);
$schema =& MDB2_Schema::factory($config->get('db_dsnw'), $options);
$schema->db->supported['transactions'] = false;
+
// send as text/xml when opened in browser
if ($_SERVER['REMOTE_ADDR'])
header('Content-Type: text/xml');