Conditions | 4 |
Paths | 3 |
Total Lines | 16 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
39 | public function up() |
||
40 | { |
||
41 | $db = $this->db( 'db-locale' ); |
||
42 | |||
43 | if( !$db->hasTable( 'mshop_locale_site' ) || $db->hasColumn( 'mshop_locale_site', 'siteid' ) ) { |
||
44 | return; |
||
45 | } |
||
46 | |||
47 | $this->info( 'Update FosUser "siteid" columns', 'vv' ); |
||
48 | |||
49 | $this->process( $this->resources ); |
||
50 | |||
51 | $db = $this->db( 'db-customer' ); |
||
52 | |||
53 | if( $db->hasColumn( 'users', 'siteid' ) ) { |
||
54 | $db->exec( 'UPDATE users SET siteid=\'\' WHERE siteid IS NULL' ); |
||
55 | } |
||
58 |