Version18000Date20191014105105.php 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * @copyright Copyright (c) 2019 Julius Härtl <jus@bitgrid.net>
  5. *
  6. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  7. * @author Daniel Kesselberg <mail@danielkesselberg.de>
  8. * @author Joas Schilling <coding@schilljs.com>
  9. * @author Julius Härtl <jus@bitgrid.net>
  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 OCP\DB\ISchemaWrapper;
  30. use OCP\DB\Types;
  31. use OCP\IDBConnection;
  32. use OCP\Migration\IOutput;
  33. use OCP\Migration\SimpleMigrationStep;
  34. class Version18000Date20191014105105 extends SimpleMigrationStep {
  35. public function __construct(
  36. protected IDBConnection $connection,
  37. ) {
  38. }
  39. /**
  40. * @param IOutput $output
  41. * @param Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper`
  42. * @param array $options
  43. * @return null|ISchemaWrapper
  44. */
  45. public function changeSchema(IOutput $output, Closure $schemaClosure, array $options): ?ISchemaWrapper {
  46. /** @var ISchemaWrapper $schema */
  47. $schema = $schemaClosure();
  48. $table = $schema->createTable('direct_edit');
  49. $table->addColumn('id', Types::BIGINT, [
  50. 'autoincrement' => true,
  51. 'notnull' => true,
  52. ]);
  53. $table->addColumn('editor_id', Types::STRING, [
  54. 'notnull' => true,
  55. 'length' => 64,
  56. ]);
  57. $table->addColumn('token', Types::STRING, [
  58. 'notnull' => true,
  59. 'length' => 64,
  60. ]);
  61. $table->addColumn('file_id', Types::BIGINT, [
  62. 'notnull' => true,
  63. ]);
  64. $table->addColumn('user_id', Types::STRING, [
  65. 'notnull' => false,
  66. 'length' => 64,
  67. ]);
  68. $table->addColumn('share_id', Types::BIGINT, [
  69. 'notnull' => false
  70. ]);
  71. $table->addColumn('timestamp', Types::BIGINT, [
  72. 'notnull' => true,
  73. 'length' => 20,
  74. 'unsigned' => true,
  75. ]);
  76. $table->addColumn('accessed', Types::BOOLEAN, [
  77. 'notnull' => false,
  78. 'default' => false
  79. ]);
  80. $table->setPrimaryKey(['id']);
  81. $table->addIndex(['token']);
  82. $table->addIndex(['timestamp'], 'direct_edit_timestamp');
  83. return $schema;
  84. }
  85. }