| 1 | <?php |
||
| 15 | class TablesUpdateCharsetCollationFosuser extends \Aimeos\MW\Setup\Task\TablesUpdateCharsetCollation |
||
| 16 | { |
||
| 17 | private $tables = [ |
||
| 18 | 'db-customer' => [ |
||
| 19 | 'fos_user' => 'code', 'fos_user_address' => 'email', |
||
| 20 | 'fos_user_list_type' => 'code', 'fos_user_list' => 'refid', |
||
| 21 | 'fos_user_property_type' => 'code', 'fos_user_property' => 'value', |
||
| 22 | ], |
||
| 23 | ]; |
||
| 24 | |||
| 25 | |||
| 26 | /** |
||
| 27 | * Returns the list of task names which this task depends on. |
||
| 28 | * |
||
| 29 | * @return string[] List of task names |
||
| 30 | */ |
||
| 31 | public function getPreDependencies() |
||
| 35 | |||
| 36 | |||
| 37 | /** |
||
| 38 | * Returns the list of task names which depends on this task. |
||
| 39 | * |
||
| 40 | * @return array List of task names |
||
| 41 | */ |
||
| 42 | public function getPostDependencies() |
||
| 46 | |||
| 47 | |||
| 48 | /** |
||
| 49 | * Executes the task |
||
| 50 | */ |
||
| 51 | public function migrate() |
||
| 60 | } |