Skip to content
Snippets Groups Projects
Unverified Commit 0d4ca0e7 authored by Joas Schilling's avatar Joas Schilling
Browse files

Drop foreign key before trying to drop the accounts table

parent 13e0a950
No related branches found
No related tags found
No related merge requests found
......@@ -44,6 +44,8 @@ class SaveAccountsTableData implements IRepairStep {
/** @var IConfig */
protected $config;
protected $hasForeignKeyOnPersistentLocks = false;
/**
* @param IDBConnection $db
* @param IConfig $config
......@@ -77,6 +79,9 @@ class SaveAccountsTableData implements IRepairStep {
}
// Remove the table
if ($this->hasForeignKeyOnPersistentLocks) {
$this->db->dropTable('persistent_locks');
}
$this->db->dropTable('accounts');
}
......@@ -85,14 +90,29 @@ class SaveAccountsTableData implements IRepairStep {
*/
protected function shouldRun() {
$schema = $this->db->createSchema();
$prefix = $this->config->getSystemValue('dbtableprefix', 'oc_');
$tableName = $this->config->getSystemValue('dbtableprefix', 'oc_') . 'accounts';
$tableName = $prefix . 'accounts';
if (!$schema->hasTable($tableName)) {
return false;
}
$table = $schema->getTable($tableName);
return $table->hasColumn('user_id');
if (!$table->hasColumn('user_id')) {
return false;
}
if ($schema->hasTable($prefix . 'persistent_locks')) {
$locksTable = $schema->getTable($prefix . 'persistent_locks');
$foreignKeys = $locksTable->getForeignKeys();
foreach ($foreignKeys as $foreignKey) {
if ($tableName === $foreignKey->getForeignTableName()) {
$this->hasForeignKeyOnPersistentLocks = true;
}
}
}
return true;
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment