| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | public function up() |
||
| 17 | { |
||
| 18 | Schema::create('migration-conversion-test', function (Blueprint $table) { |
||
| 19 | $table->increments('id'); |
||
| 20 | $table->string('name'); |
||
| 21 | $table->string('email')->unique(); |
||
| 22 | $table->timestamp('email_verified_at')->nullable(); |
||
| 23 | $table->string('password'); |
||
| 24 | $table->rememberToken(); |
||
| 25 | $table->timestamps(); |
||
| 26 | }); |
||
| 39 |