| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 9 |
| Lines | 12 |
| Ratio | 100 % |
| Changes | 0 | ||
| 1 | <?php namespace Bedard\Shop\Updates; |
||
| 9 | public function up() |
||
| 10 | { |
||
| 11 | Schema::create('bedard_shop_options', function (Blueprint $table) { |
||
| 12 | $table->engine = 'InnoDB'; |
||
| 13 | $table->increments('id'); |
||
| 14 | $table->integer('product_id')->unsigned()->nullable()->index(); |
||
| 15 | $table->integer('sort_order')->unsigned()->default(0)->index(); |
||
| 16 | $table->string('name')->default(''); |
||
| 17 | $table->string('placeholder')->default(''); |
||
| 18 | $table->timestamps(); |
||
| 19 | }); |
||
| 20 | } |
||
| 21 | |||
| 27 |