diff options
author | Vincent Petry <pvince81@owncloud.com> | 2014-07-01 12:54:35 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2014-07-01 12:54:35 +0200 |
commit | b752aff51d4bfea37a52bd832c3d645996e6dd8d (patch) | |
tree | 01e8f7d64455a8aea1f4f0f9a63d8ae0712a565f /lib/private/db/mdb2schemamanager.php | |
parent | 88e6f5c318d1fcd08ac2182bbfbdf9b15ae34d17 (diff) | |
download | nextcloud-server-b752aff51d4bfea37a52bd832c3d645996e6dd8d.tar.gz nextcloud-server-b752aff51d4bfea37a52bd832c3d645996e6dd8d.zip |
Fix migrator tests to use the correct migrator instances
Diffstat (limited to 'lib/private/db/mdb2schemamanager.php')
-rw-r--r-- | lib/private/db/mdb2schemamanager.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/db/mdb2schemamanager.php b/lib/private/db/mdb2schemamanager.php index ee3d53b576a..a6d9e30cf80 100644 --- a/lib/private/db/mdb2schemamanager.php +++ b/lib/private/db/mdb2schemamanager.php @@ -58,7 +58,7 @@ class MDB2SchemaManager { /** * @return \OC\DB\Migrator */ - protected function getMigrator() { + public function getMigrator() { $platform = $this->conn->getDatabasePlatform(); if ($platform instanceof SqlitePlatform) { return new SQLiteMigrator($this->conn); |