1 | <?php |
||
31 | class Version2006Date20170919095939 extends BigIntMigration { |
||
32 | |||
33 | /** |
||
34 | * @return array Returns an array with the following structure |
||
35 | * ['table1' => ['column1', 'column2'], ...] |
||
36 | * @since 13.0.0 |
||
37 | */ |
||
38 | protected function getColumnsByTable() { |
||
39 | return [ |
||
40 | 'activity' => ['activity_id', 'object_id'], |
||
41 | 'activity_mq' => ['mail_id'], |
||
42 | ]; |
||
43 | } |
||
44 | |||
45 | /** |
||
46 | * @param IOutput $output |
||
47 | * @param \Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` |
||
48 | * @param array $options |
||
49 | * @return null|ISchemaWrapper |
||
50 | * @since 13.0.0 |
||
51 | */ |
||
52 | public function changeSchema(IOutput $output, \Closure $schemaClosure, array $options) { |
||
61 | } |
||
62 |