1 | <?php |
||
15 | class FosuserAddIndexes extends \Aimeos\MW\Setup\Task\Base |
||
16 | { |
||
17 | private $list = array( |
||
18 | // done by Doctrine schema update |
||
19 | ); |
||
20 | |||
21 | |||
22 | /** |
||
23 | * Returns the list of task names which this task depends on. |
||
24 | * |
||
25 | * @return string[] List of task names |
||
26 | */ |
||
27 | public function getPreDependencies() |
||
31 | |||
32 | |||
33 | /** |
||
34 | * Returns the list of task names which depends on this task. |
||
35 | * |
||
36 | * @return array List of task names |
||
37 | */ |
||
38 | public function getPostDependencies() |
||
42 | |||
43 | |||
44 | /** |
||
45 | * Update database schema |
||
46 | */ |
||
47 | public function migrate() |
||
69 | } |
||
70 |