Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
31 | public function migrate() |
||
32 | { |
||
33 | $this->msg( 'Creating Aimeos FOS user bundle tables', 0 ); |
||
34 | $this->status( '' ); |
||
35 | |||
36 | $ds = DIRECTORY_SEPARATOR; |
||
37 | |||
38 | $files = array( |
||
39 | 'db-customer' => __DIR__ . $ds . 'default' . $ds . 'schema' . $ds . 'customer.php', |
||
40 | ); |
||
41 | |||
42 | $this->setupSchema( $files ); |
||
43 | } |
||
44 | } |
||
45 |