remove files_encryption from database at the end of the migration process

This commit is contained in:
Bjoern Schiessle 2015-06-19 14:15:56 +02:00
parent 6adddb3095
commit ed3dc199ae
1 changed files with 1 additions and 1 deletions

View File

@ -54,6 +54,7 @@ class Migration {
public function __destruct() { public function __destruct() {
$this->view->deleteAll('files_encryption/public_keys'); $this->view->deleteAll('files_encryption/public_keys');
$this->updateFileCache(); $this->updateFileCache();
$this->config->deleteAppValue('files_encryption', 'installed_version');
} }
/** /**
@ -139,7 +140,6 @@ class Migration {
public function updateDB() { public function updateDB() {
// delete left-over from old encryption which is no longer needed // delete left-over from old encryption which is no longer needed
$this->config->deleteAppValue('files_encryption', 'installed_version');
$this->config->deleteAppValue('files_encryption', 'ocsid'); $this->config->deleteAppValue('files_encryption', 'ocsid');
$this->config->deleteAppValue('files_encryption', 'types'); $this->config->deleteAppValue('files_encryption', 'types');
$this->config->deleteAppValue('files_encryption', 'enabled'); $this->config->deleteAppValue('files_encryption', 'enabled');