From 059968e1c705f5b06cd6049f1a7ad05a123f5500 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Thu, 5 Dec 2019 14:38:28 +0100 Subject: Pick a shorter name for the transfer ownership table Signed-off-by: Joas Schilling Signed-off-by: Roeland Jago Douma --- .../Migration/Version11301Date20191113195931.php | 74 --------------------- .../Migration/Version11301Date20191205150729.php | 77 ++++++++++++++++++++++ 2 files changed, 77 insertions(+), 74 deletions(-) delete mode 100644 apps/files/lib/Migration/Version11301Date20191113195931.php create mode 100644 apps/files/lib/Migration/Version11301Date20191205150729.php (limited to 'apps/files/lib/Migration') diff --git a/apps/files/lib/Migration/Version11301Date20191113195931.php b/apps/files/lib/Migration/Version11301Date20191113195931.php deleted file mode 100644 index d5c255bb8a3..00000000000 --- a/apps/files/lib/Migration/Version11301Date20191113195931.php +++ /dev/null @@ -1,74 +0,0 @@ - - * - * @author Roeland Jago Douma - * - * @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\Files\Migration; - -use Closure; -use OCP\DB\ISchemaWrapper; -use OCP\Migration\SimpleMigrationStep; -use OCP\Migration\IOutput; - -class Version11301Date20191113195931 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(); - - $table = $schema->createTable('user_transfer_ownership'); - $table->addColumn('id', 'integer', [ - 'autoincrement' => true, - 'notnull' => true, - 'length' => 4, - ]); - $table->addColumn('source_user', 'string', [ - 'notnull' => true, - 'length' => 64, - ]); - $table->addColumn('target_user', 'string', [ - 'notnull' => true, - 'length' => 64, - ]); - $table->addColumn('file_id', 'bigint', [ - 'notnull' => true, - 'length' => 20, - ]); - $table->addColumn('node_name', 'string', [ - 'notnull' => true, - 'length' => 255, - ]); - $table->setPrimaryKey(['id']); - - return $schema; - } - -} diff --git a/apps/files/lib/Migration/Version11301Date20191205150729.php b/apps/files/lib/Migration/Version11301Date20191205150729.php new file mode 100644 index 00000000000..2ec9bdb4718 --- /dev/null +++ b/apps/files/lib/Migration/Version11301Date20191205150729.php @@ -0,0 +1,77 @@ + + * + * @author Roeland Jago Douma + * + * @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\Files\Migration; + +use Closure; +use OCP\DB\ISchemaWrapper; +use OCP\Migration\IOutput; +use OCP\Migration\SimpleMigrationStep; + +class Version11301Date20191205150729 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(); + + $table = $schema->createTable('user_transfer_owner'); + $table->addColumn('id', 'bigint', [ + 'autoincrement' => true, + 'notnull' => true, + 'length' => 20, + 'unsigned' => true, + ]); + $table->addColumn('source_user', 'string', [ + 'notnull' => true, + 'length' => 64, + ]); + $table->addColumn('target_user', 'string', [ + 'notnull' => true, + 'length' => 64, + ]); + $table->addColumn('file_id', 'bigint', [ + 'notnull' => true, + 'length' => 20, + ]); + $table->addColumn('node_name', 'string', [ + 'notnull' => true, + 'length' => 255, + ]); + $table->setPrimaryKey(['id']); + + // Quite radical, we just assume no one updates cross beta with a pending request. + // Do not try this at home + if ($schema->hasTable('user_transfer_ownership')) { + $schema->dropTable('user_transfer_ownership'); + } + + return $schema; + } +} -- cgit v1.2.3