summaryrefslogtreecommitdiffstats
path: root/lib/Migration/Version150302Date20210227133330.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Migration/Version150302Date20210227133330.php')
-rw-r--r--lib/Migration/Version150302Date20210227133330.php54
1 files changed, 0 insertions, 54 deletions
diff --git a/lib/Migration/Version150302Date20210227133330.php b/lib/Migration/Version150302Date20210227133330.php
deleted file mode 100644
index d6186af67..000000000
--- a/lib/Migration/Version150302Date20210227133330.php
+++ /dev/null
@@ -1,54 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace OCA\News\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 Version150302Date20210227133330 extends SimpleMigrationStep {
-
- /**
- * @param IOutput $output
- * @param Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper`
- * @param array $options
- */
- public function preSchemaChange(IOutput $output, Closure $schemaClosure, array $options): void {
- }
-
- /**
- * @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): ?ISchemaWrapper {
- /** @var ISchemaWrapper $schema */
- $schema = $schemaClosure();
-
- if ($schema->hasTable('news_items')) {
- $table = $schema->getTable('news_items');
- $table->addColumn('shared_by', 'string', [
- 'notnull' => false,
- 'length' => 64
- ]);
- }
-
- return $schema;
-
- }
-
- /**
- * @param IOutput $output
- * @param Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper`
- * @param array $options
- */
- public function postSchemaChange(IOutput $output, Closure $schemaClosure, array $options): void {
- }
-}