Fix oracle support of external storage app

This commit is contained in:
Joas Schilling 2016-08-15 11:59:48 +02:00
parent f8a45b9e08
commit b4a2f93ec8
No known key found for this signature in database
GPG Key ID: E166FD8976B3BAC8
2 changed files with 2 additions and 2 deletions

View File

@ -144,7 +144,7 @@
<field>
<name>value</name>
<type>text</type>
<notnull>true</notnull>
<notnull>false</notnull>
<length>4096</length>
</field>

View File

@ -208,7 +208,7 @@ class DBConfigService {
'type' => $builder->createNamedParameter($type, IQueryBuilder::PARAM_INT)
]);
$query->execute();
return (int)$this->connection->lastInsertId('external_mounts');
return (int)$this->connection->lastInsertId('*PREFIX*external_mounts');
}
/**