forms/lib/Migration/Version010102Date20200323120846.php
Roeland Jago Douma 5c4a7628f4
Remove the notifications
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2020-03-23 13:15:09 +01:00

30 lines
700 B
PHP

<?php
declare(strict_types=1);
namespace OCA\Forms\Migration;
use Closure;
use OCP\DB\ISchemaWrapper;
use OCP\Migration\IOutput;
use OCP\Migration\SimpleMigrationStep;
/**
* Auto-generated migration step: Please modify to your needs!
*/
class Version010102Date20200323120846 extends SimpleMigrationStep {
/**
* @param IOutput $output
* @param Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper`
* @param array $options
* @return null|ISchemaWrapper
*/
public function changeSchema(IOutput $output, Closure $schemaClosure, array $options) {
/** @var ISchemaWrapper $schema */
$schema = $schemaClosure();
$schema->dropTable('forms_notif');
return $schema;
}
}