1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
- declare(strict_types=1);
- namespace OC\Core\Migrations;
- use OCP\Migration\BigIntMigration;
- class Version23000Date20211213203940 extends BigIntMigration {
-
- protected function getColumnsByTable() {
- return [
- 'profile_config' => ['id'],
- ];
- }
- }
|