From 35dc4cf033ee828759481f50952a4376f6d6c656 Mon Sep 17 00:00:00 2001 From: Marco Nassabain Date: Thu, 18 Mar 2021 23:00:30 +0100 Subject: =?UTF-8?q?=F0=9F=97=83=20Update=20share=20migration=20version?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Marco Nassabain --- lib/Migration/Version150302Date20210227133330.php | 54 ----------------------- lib/Migration/Version150400Date20210318215425.php | 53 ++++++++++++++++++++++ 2 files changed, 53 insertions(+), 54 deletions(-) delete mode 100644 lib/Migration/Version150302Date20210227133330.php create mode 100644 lib/Migration/Version150400Date20210318215425.php (limited to 'lib') 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 @@ -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 { - } -} diff --git a/lib/Migration/Version150400Date20210318215425.php b/lib/Migration/Version150400Date20210318215425.php new file mode 100644 index 000000000..dbe5618bd --- /dev/null +++ b/lib/Migration/Version150400Date20210318215425.php @@ -0,0 +1,53 @@ +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 { + } +} -- cgit v1.2.3