| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 34 | public function up() |
||
| 35 | { |
||
| 36 | Schema::create($this->table, function (Blueprint $table) { |
||
| 37 | $table->bigIncrements('id'); |
||
| 38 | $table->string(TrackingUpdate::COLUMN_TRACKABLE_IDENTIFIER); |
||
| 39 | $table->string(TrackingUpdate::COLUMN_TRACKABLE_TYPE); |
||
| 40 | $table->string(TrackingUpdate::COLUMN_STATUS_IDENTIFIER); |
||
| 41 | $table->timestamps(); |
||
| 42 | }); |
||
| 53 |