Do not use digits in random index names

This commit is contained in:
Victor Dubiniuk 2015-06-08 18:59:24 +03:00
parent 64c9c27f7e
commit c7c6556187
1 changed files with 1 additions and 1 deletions

View File

@ -169,7 +169,7 @@ class Migrator {
$indexName = $index->getName();
} else {
// avoid conflicts in index names
$indexName = $this->config->getSystemValue('dbtableprefix', 'oc_') . $this->random->generate(13, ISecureRandom::CHAR_LOWER . ISecureRandom::CHAR_DIGITS);
$indexName = $this->config->getSystemValue('dbtableprefix', 'oc_') . $this->random->generate(13, ISecureRandom::CHAR_LOWER);
}
$newIndexes[] = new Index($indexName, $index->getColumns(), $index->isUnique(), $index->isPrimary());
}