| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | public function up() |
||
| 15 | { |
||
| 16 | Schema::create('control_data_user', function (Blueprint $table) { |
||
| 17 | $table->bigIncrements('id'); |
||
| 18 | $table->string('first_name')->nullable(); |
||
| 19 | $table->string('last_name')->nullable(); |
||
| 20 | $table->string('email')->nullable(); |
||
| 21 | $table->date('dob')->nullable(); |
||
| 22 | $table->string('preferred_name')->nullable(); |
||
| 23 | $table->json('additional_attributes')->nullable(); |
||
| 24 | $table->timestamps(); |
||
| 25 | $table->softDeletes(); |
||
| 26 | }); |
||
| 39 |