| Conditions | 3 |
| Paths | 2 |
| Total Lines | 11 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 31 | public function up() |
||
| 32 | { |
||
| 33 | $db = $this->db( 'db-customer' ); |
||
| 34 | |||
| 35 | if( !$db->hasTable( ['fe_users', 'static_countries'] ) || !$db->hasColumn( 'fe_users', 'static_info_country' ) ) { |
||
| 36 | return; |
||
| 37 | } |
||
| 38 | |||
| 39 | $this->info( 'Migrating "static_info_country" column in "fe_users" table', 'vv' ); |
||
| 40 | |||
| 41 | $db->exec( ' |
||
| 42 | UPDATE fe_users SET static_info_country = ( |
||
| 47 | } |