1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <?php
- namespace OC\Core\Migrations;
- use OCP\Migration\BigIntMigration;
- class Version13000Date20170926101637 extends BigIntMigration {
-
- protected function getColumnsByTable() {
- return [
- 'admin_settings' => ['id'],
- 'authtoken' => ['id'],
- 'bruteforce_attempts' => ['id'],
- 'comments' => ['id', 'parent_id', 'topmost_parent_id'],
-
- 'file_locks' => ['id'],
- 'jobs' => ['id'],
-
- 'mounts' => ['id'],
- 'personal_settings' => ['id'],
- 'properties' => ['id'],
- 'share' => ['id', 'parent', 'file_source'],
-
- 'systemtag' => ['id'],
- 'systemtag_group' => ['systemtagid'],
- 'systemtag_object_mapping' => ['systemtagid'],
- 'vcategory' => ['id'],
- 'vcategory_to_object' => ['objid', 'categoryid'],
- ];
- }
- }
|