diff options
Diffstat (limited to 'lib/public/Migration/SimpleMigrationStep.php')
-rw-r--r-- | lib/public/Migration/SimpleMigrationStep.php | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/lib/public/Migration/SimpleMigrationStep.php b/lib/public/Migration/SimpleMigrationStep.php index da46c687644..c515592bde9 100644 --- a/lib/public/Migration/SimpleMigrationStep.php +++ b/lib/public/Migration/SimpleMigrationStep.php @@ -29,6 +29,23 @@ use OCP\DB\ISchemaWrapper; * @since 13.0.0 */ abstract class SimpleMigrationStep implements IMigrationStep { + /** + * Human readable name of the migration step + * + * @return string + */ + public function name(): string { + return ''; + } + + /** + * Human readable description of the migration step + * + * @return string + */ + public function description(): string { + return ''; + } /** * @param IOutput $output |