2017-06-02 14:54:09 +03:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @copyright Copyright (c) 2017 Joas Schilling <coding@schilljs.com>
|
|
|
|
*
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
|
|
|
*
|
2017-06-02 14:54:09 +03:00
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OCP\Migration;
|
|
|
|
|
2018-01-17 13:35:20 +03:00
|
|
|
use OCP\DB\ISchemaWrapper;
|
2017-06-02 14:54:09 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @since 13.0.0
|
|
|
|
*/
|
|
|
|
abstract class SimpleMigrationStep implements IMigrationStep {
|
2018-04-12 18:47:40 +03:00
|
|
|
/**
|
|
|
|
* Human readable name of the migration step
|
|
|
|
*
|
|
|
|
* @return string
|
2018-05-30 22:28:55 +03:00
|
|
|
* @since 14.0.0
|
2018-04-12 18:47:40 +03:00
|
|
|
*/
|
|
|
|
public function name(): string {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Human readable description of the migration step
|
|
|
|
*
|
|
|
|
* @return string
|
2018-05-30 22:28:55 +03:00
|
|
|
* @since 14.0.0
|
2018-04-12 18:47:40 +03:00
|
|
|
*/
|
|
|
|
public function description(): string {
|
|
|
|
return '';
|
|
|
|
}
|
2017-06-02 14:54:09 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param IOutput $output
|
2018-01-17 13:35:20 +03:00
|
|
|
* @param \Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper`
|
2017-06-07 14:51:54 +03:00
|
|
|
* @param array $options
|
2017-06-02 14:54:09 +03:00
|
|
|
* @since 13.0.0
|
|
|
|
*/
|
2017-06-07 14:51:54 +03:00
|
|
|
public function preSchemaChange(IOutput $output, \Closure $schemaClosure, array $options) {
|
2017-06-02 14:54:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-06-07 14:51:54 +03:00
|
|
|
* @param IOutput $output
|
2018-01-17 13:35:20 +03:00
|
|
|
* @param \Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper`
|
2017-06-02 14:54:09 +03:00
|
|
|
* @param array $options
|
2018-01-17 13:35:20 +03:00
|
|
|
* @return null|ISchemaWrapper
|
2017-06-02 14:54:09 +03:00
|
|
|
* @since 13.0.0
|
|
|
|
*/
|
2017-06-07 14:51:54 +03:00
|
|
|
public function changeSchema(IOutput $output, \Closure $schemaClosure, array $options) {
|
2017-06-02 14:54:09 +03:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param IOutput $output
|
2018-01-17 13:35:20 +03:00
|
|
|
* @param \Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper`
|
2017-06-07 14:51:54 +03:00
|
|
|
* @param array $options
|
2017-06-02 14:54:09 +03:00
|
|
|
* @since 13.0.0
|
|
|
|
*/
|
2017-06-07 14:51:54 +03:00
|
|
|
public function postSchemaChange(IOutput $output, \Closure $schemaClosure, array $options) {
|
2017-06-02 14:54:09 +03:00
|
|
|
}
|
|
|
|
}
|