Version23000Date20211213203940.php 520 B

123456789101112131415161718192021222324
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors
  5. * SPDX-License-Identifier: AGPL-3.0-or-later
  6. */
  7. namespace OC\Core\Migrations;
  8. use OCP\Migration\BigIntMigration;
  9. class Version23000Date20211213203940 extends BigIntMigration {
  10. /**
  11. * @return array Returns an array with the following structure
  12. * ['table1' => ['column1', 'column2'], ...]
  13. */
  14. protected function getColumnsByTable() {
  15. return [
  16. 'profile_config' => ['id'],
  17. ];
  18. }
  19. }