diff options
author | Robin Appelman <robin@icewind.nl> | 2018-04-12 17:47:40 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2018-05-30 21:28:05 +0200 |
commit | b40629ac8caf5d488053a9ab2e89210bf14e1b4c (patch) | |
tree | e4a5c79218778a494250768832d55640939c65ec /core/Migrations/Version14000Date20180129121024.php | |
parent | 2dd49206c74eaa8e9149b117775f4747483ba5bd (diff) | |
download | nextcloud-server-b40629ac8caf5d488053a9ab2e89210bf14e1b4c.tar.gz nextcloud-server-b40629ac8caf5d488053a9ab2e89210bf14e1b4c.zip |
Add human readable description to migration steps
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'core/Migrations/Version14000Date20180129121024.php')
-rw-r--r-- | core/Migrations/Version14000Date20180129121024.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/core/Migrations/Version14000Date20180129121024.php b/core/Migrations/Version14000Date20180129121024.php index eedd99d014e..9512d4adafd 100644 --- a/core/Migrations/Version14000Date20180129121024.php +++ b/core/Migrations/Version14000Date20180129121024.php @@ -30,6 +30,13 @@ use OCP\Migration\IOutput; * Delete the admin|personal sections and settings tables */ class Version14000Date20180129121024 extends SimpleMigrationStep { + public function name(): string { + return 'Drop obsolete settings tables'; + } + + public function description(): string { + return 'Drops the following obsolete tables: "admin_sections", "admin_settings", "personal_sections" and "personal_settings"'; + } /** * @param IOutput $output |