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.

Version1008Date20181105104826.php 2.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * @copyright Copyright (c) 2018 Georg Ehrke
  5. *
  6. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  7. * @author Daniel Kesselberg <mail@danielkesselberg.de>
  8. * @author Georg Ehrke <oc.list@georgehrke.com>
  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 OCA\DAV\Migration;
  28. use Closure;
  29. use OCP\DB\Types;
  30. use OCP\DB\ISchemaWrapper;
  31. use OCP\IDBConnection;
  32. use OCP\Migration\IOutput;
  33. use OCP\Migration\SimpleMigrationStep;
  34. class Version1008Date20181105104826 extends SimpleMigrationStep {
  35. /** @var IDBConnection */
  36. private $connection;
  37. /**
  38. * Version1008Date20181105104826 constructor.
  39. *
  40. * @param IDBConnection $connection
  41. */
  42. public function __construct(IDBConnection $connection) {
  43. $this->connection = $connection;
  44. }
  45. /**
  46. * @param IOutput $output
  47. * @param Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper`
  48. * @param array $options
  49. * @return null|ISchemaWrapper
  50. */
  51. public function changeSchema(IOutput $output, Closure $schemaClosure, array $options) {
  52. /** @var ISchemaWrapper $schema */
  53. $schema = $schemaClosure();
  54. $table = $schema->getTable('calendarsubscriptions');
  55. $table->addColumn('source_copy', Types::TEXT, [
  56. 'notnull' => false,
  57. 'length' => null,
  58. ]);
  59. return $schema;
  60. }
  61. /**
  62. * @param IOutput $output
  63. * @param Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper`
  64. * @param array $options
  65. */
  66. public function postSchemaChange(IOutput $output, Closure $schemaClosure, array $options) {
  67. $qb = $this->connection->getQueryBuilder();
  68. $qb->update('calendarsubscriptions')
  69. ->set('source_copy', 'source')
  70. ->execute();
  71. }
  72. }