| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 13 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | 8 | public static function defaultColumns(Blueprint $table) |
|
| 10 | { |
||
| 11 | 8 | $table->unsignedBigInteger('gdc'); |
|
| 12 | 8 | $table->string('first_name')->nullable()->index(); |
|
| 13 | 8 | $table->string('last_name')->nullable()->index(); |
|
| 14 | 8 | $table->string('status')->nullable()->index(); |
|
| 15 | 8 | $table->string('registrant_type')->nullable()->index(); |
|
| 16 | 8 | $table->text('qualifications')->nullable(); |
|
| 17 | 8 | $table->date('first_registered_on')->nullable(); |
|
| 18 | 8 | $table->date('current_period_from')->nullable(); |
|
| 19 | 8 | $table->date('current_period_until')->nullable(); |
|
| 20 | 8 | $table->json('data')->nullable(); |
|
| 21 | 8 | $table->dateTime('last_fetched_at'); |
|
| 22 | 8 | $table->timestamps(); |
|
| 23 | } |
||
| 25 |