| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 36 | public function up() |
||
| 37 | { |
||
| 38 | if ($this->isThrottlable()) |
||
| 39 | $this->createSchema(function (Blueprint $table) { |
||
| 40 | $table->increments('id'); |
||
| 41 | $table->unsignedInteger('user_id')->nullable(); |
||
| 42 | $table->string('type'); |
||
| 43 | $table->string('ip')->nullable(); |
||
| 44 | $table->timestamps(); |
||
| 45 | }); |
||
| 46 | } |
||
| 47 | |||
| 72 |