summaryrefslogtreecommitdiffstats
path: root/lib/private/db/pgsqltools.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/private/db/pgsqltools.php')
-rw-r--r--lib/private/db/pgsqltools.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/db/pgsqltools.php b/lib/private/db/pgsqltools.php
index 3896009add4..f3204d4c7b6 100644
--- a/lib/private/db/pgsqltools.php
+++ b/lib/private/db/pgsqltools.php
@@ -34,7 +34,7 @@ class PgSqlTools {
public function resynchronizeDatabaseSequences(Connection $conn) {
$databaseName = $conn->getDatabase();
$conn->getConfiguration()->
- setFilterSchemaAssetsExpression('/^' . $this->config->getSystemValue('dbtableprefix') . '/');
+ setFilterSchemaAssetsExpression('/^' . $this->config->getSystemValue('dbtableprefix', 'oc_') . '/');
foreach ($conn->getSchemaManager()->listSequences() as $sequence) {
$sequenceName = $sequence->getName();