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.

Version13000Date20170814074715.php 2.3KB

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