diff options
author | Robin Appelman <icewind@owncloud.com> | 2014-03-12 14:23:00 +0100 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2014-06-03 11:17:21 +0200 |
commit | 58c61c833632aec7aa45eb5817fe93b420bad574 (patch) | |
tree | 5960c0ccf758fcb29d722d7b1188a573baef831b /lib/private/db/migrator.php | |
parent | 0035147be96537193f0c7119dfd0628fe7363a26 (diff) | |
download | nextcloud-server-58c61c833632aec7aa45eb5817fe93b420bad574.tar.gz nextcloud-server-58c61c833632aec7aa45eb5817fe93b420bad574.zip |
Fix generating migration test schemas
Diffstat (limited to 'lib/private/db/migrator.php')
-rw-r--r-- | lib/private/db/migrator.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/private/db/migrator.php b/lib/private/db/migrator.php index a6c61f35424..cf95669fb83 100644 --- a/lib/private/db/migrator.php +++ b/lib/private/db/migrator.php @@ -88,11 +88,14 @@ class Migrator { * @return \Doctrine\DBAL\Schema\Table */ protected function renameTableSchema(Table $table, $newName) { + /** + * @var \Doctrine\DBAL\Schema\Index[] $indexes + */ $indexes = $table->getIndexes(); $newIndexes = array(); foreach ($indexes as $index) { $indexName = uniqid(); // avoid conflicts in index names - $newIndexes[] = new Index($indexName, $index->getColumns(), $index->isUnique(), $index->isPrimary(), $index->getFlags()); + $newIndexes[] = new Index($indexName, $index->getColumns(), $index->isUnique(), $index->isPrimary()); } // foreign keys are not supported so we just set it to an empty array |