| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 1 | Features | 1 |
| 1 | <?php |
||
| 17 | public function up(Schema $schema, QueryBag $queries) |
||
| 18 | { |
||
| 19 | $queries->addQuery( |
||
| 20 | new ParametrizedSqlMigrationQuery( |
||
| 21 | 'UPDATE oro_dashboard_widget SET name = :newName WHERE name = :oldName', |
||
| 22 | ['oldName' => 'b2b_statistics_widget', 'newName' => 'business_sales_channel_statistics'], |
||
| 23 | ['oldName' => Type::STRING, 'newName' => Type::STRING] |
||
| 24 | ) |
||
| 25 | ); |
||
| 26 | } |
||
| 27 | } |
||
| 28 |