| Conditions | 1 |
| Paths | 1 |
| Total Lines | 16 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | public function migrateUp() |
||
| 20 | { |
||
| 21 | $this->builder->create( |
||
| 22 | $this->table, |
||
| 23 | function ($table) { |
||
| 24 | $table->bigIncrements('id'); |
||
| 25 | |||
| 26 | $table->string('sha1', 40)->index(); |
||
| 27 | $table->text('serialized'); |
||
| 28 | |||
| 29 | $table->timestamps(); |
||
| 30 | $table->index('created_at'); |
||
| 31 | $table->index('updated_at'); |
||
| 32 | } |
||
| 33 | ); |
||
| 34 | } |
||
| 35 | |||
| 46 |