Version17000Date20190514105811.php 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * @copyright Copyright (c) 2019 Morris Jobke <hey@morrisjobke.de>
  5. *
  6. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  7. * @author Morris Jobke <hey@morrisjobke.de>
  8. * @author Robin Appelman <robin@icewind.nl>
  9. * @author Roeland Jago Douma <roeland@famdouma.nl>
  10. *
  11. * @license GNU AGPL version 3 or any later version
  12. *
  13. * This program is free software: you can redistribute it and/or modify
  14. * it under the terms of the GNU Affero General Public License as
  15. * published by the Free Software Foundation, either version 3 of the
  16. * License, or (at your option) any later version.
  17. *
  18. * This program is distributed in the hope that it will be useful,
  19. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  20. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  21. * GNU Affero General Public License for more details.
  22. *
  23. * You should have received a copy of the GNU Affero General Public License
  24. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  25. *
  26. */
  27. namespace OC\Core\Migrations;
  28. use Closure;
  29. use Doctrine\DBAL\Types\Type;
  30. use OCP\DB\ISchemaWrapper;
  31. use OCP\Migration\IOutput;
  32. use OCP\Migration\SimpleMigrationStep;
  33. class Version17000Date20190514105811 extends SimpleMigrationStep {
  34. /**
  35. * @param IOutput $output
  36. * @param Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper`
  37. * @param array $options
  38. * @return ISchemaWrapper
  39. */
  40. public function changeSchema(IOutput $output, Closure $schemaClosure, array $options) {
  41. /** @var ISchemaWrapper $schema */
  42. $schema = $schemaClosure();
  43. if (!$schema->hasTable('filecache_extended')) {
  44. $table = $schema->createTable('filecache_extended');
  45. $table->addColumn('fileid', Type::BIGINT, [
  46. 'notnull' => true,
  47. 'length' => 4,
  48. 'unsigned' => true,
  49. ]);
  50. $table->addColumn('metadata_etag', Type::STRING, [
  51. 'notnull' => false,
  52. 'length' => 40,
  53. ]);
  54. $table->addColumn('creation_time', Type::BIGINT, [
  55. 'notnull' => true,
  56. 'length' => 20,
  57. 'default' => 0,
  58. ]);
  59. $table->addColumn('upload_time', Type::BIGINT, [
  60. 'notnull' => true,
  61. 'length' => 20,
  62. 'default' => 0,
  63. ]);
  64. $table->addUniqueIndex(['fileid'], 'fce_fileid_idx');
  65. $table->addIndex(['creation_time'], 'fce_ctime_idx');
  66. $table->addIndex(['upload_time'], 'fce_utime_idx');
  67. }
  68. return $schema;
  69. }
  70. }