From 7deb98642ab21e94117d215c75999f34e559b31b Mon Sep 17 00:00:00 2001 From: Maxence Lange Date: Tue, 7 May 2019 14:11:04 -0100 Subject: Refresh on the SQL migrations Signed-off-by: Maxence Lange --- lib/Migration/Version0002Date20190119124417.php | 103 ------------------------ 1 file changed, 103 deletions(-) delete mode 100644 lib/Migration/Version0002Date20190119124417.php (limited to 'lib/Migration/Version0002Date20190119124417.php') diff --git a/lib/Migration/Version0002Date20190119124417.php b/lib/Migration/Version0002Date20190119124417.php deleted file mode 100644 index 88713d4e..00000000 --- a/lib/Migration/Version0002Date20190119124417.php +++ /dev/null @@ -1,103 +0,0 @@ - - * @copyright 2018, Maxence Lange - * @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 . - * - */ - - -namespace OCA\Social\Migration; - - -use Closure; -use Doctrine\DBAL\DBALException; -use Doctrine\DBAL\Schema\SchemaException; -use Doctrine\DBAL\Types\Type; -use OCA\Social\Db\CoreRequestBuilder; -use OCP\DB\ISchemaWrapper; -use OCP\IDBConnection; -use OCP\Migration\IOutput; -use OCP\Migration\SimpleMigrationStep; - - -/** - * Class Version0002Date20190108103942 - * - * @package OCA\Social\Migration - */ -class Version0002Date20190119124417 extends SimpleMigrationStep { - - - /** @var IDBConnection */ - private $connection; - - - /** - * @param IDBConnection $connection - */ - public function __construct(IDBConnection $connection) { - $this->connection = $connection; - } - - - /** - * @param IOutput $output - * @param Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` - * @param array $options - * - * @return ISchemaWrapper - * @throws SchemaException - * @throws DBALException - */ - public function changeSchema(IOutput $output, Closure $schemaClosure, array $options - ): ISchemaWrapper { - /** @var ISchemaWrapper $schema */ - $schema = $schemaClosure(); - - $table = $schema->getTable(CoreRequestBuilder::TABLE_SERVER_NOTES); - if (!$table->hasColumn('attachments')) { - $table->addColumn('attachments', Type::TEXT, ['notnull' => false]); - } - - $table = $schema->getTable(CoreRequestBuilder::TABLE_CACHE_DOCUMENTS); - if (!$table->hasColumn('parent_id')) { - $table->addColumn('parent_id', Type::STRING, ['notnull' => false, 'length' => 1000]); - } - - 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) { - } - -} - -- cgit v1.2.3