You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Version21000Date20201202095923.php 2.2KB

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