| Conditions | 3 |
| Paths | 4 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | public function up(Schema $schema, QueryBag $queries) |
||
| 16 | { |
||
| 17 | $table = $schema->getTable('orocrm_magento_cart'); |
||
| 18 | if (!$table->hasIndex('magecart_payment_details_idx')) { |
||
| 19 | $table->addIndex(['payment_details'], 'magecart_payment_details_idx', []); |
||
| 20 | } |
||
| 21 | if (!$table->hasIndex('status_name_items_qty_idx')) { |
||
| 22 | $table->addIndex(['status_name', 'items_qty'], 'status_name_items_qty_idx', []); |
||
| 23 | } |
||
| 24 | } |
||
| 25 | } |
||
| 26 |