| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php namespace Bedard\Shop\Updates; |
||
| 9 | public function up() |
||
| 10 | { |
||
| 11 | Schema::create('bedard_shop_inventory_option_value', function (Blueprint $table) { |
||
| 12 | $table->engine = 'InnoDB'; |
||
| 13 | $table->integer('inventory_id')->unsigned(); |
||
| 14 | $table->integer('option_value_id')->unsigned(); |
||
| 15 | $table->primary(['inventory_id', 'option_value_id'], 'inventory_option_value_ids'); |
||
| 16 | }); |
||
| 17 | } |
||
| 18 | |||
| 24 |