| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | public function up(): void |
||
| 13 | { |
||
| 14 | Schema::create('{{pluralSnake}}', function (Blueprint $table) { |
||
| 15 | $table->id(); |
||
| 16 | $table->string('name'); |
||
| 17 | $table->string('email')->unique(); |
||
| 18 | $table->timestamp('email_verified_at')->nullable(); |
||
| 19 | $table->string('password'); |
||
| 20 | $table->rememberToken(); |
||
| 21 | $table->timestamps(); |
||
| 22 | }); |
||
| 33 |