| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 8 |
| 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_customers', function(Blueprint $table) { |
||
| 12 | $table->engine = 'InnoDB'; |
||
| 13 | $table->increments('id'); |
||
| 14 | $table->string('name')->default(''); |
||
| 15 | $table->string('email')->default(''); |
||
| 16 | $table->integer('user_id')->unsigned()->index(); |
||
| 17 | $table->timestamps(); |
||
| 18 | }); |
||
| 19 | } |
||
| 20 | |||
| 26 |