| Conditions | 3 |
| Paths | 2 |
| Total Lines | 6 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 12 |
| Changes | 0 | ||
| 1 | <?php |
||
| 34 | final public function up() |
||
| 35 | { |
||
| 36 | if (! Schema::connection($this->connection)->hasTable($this->collection)) { |
||
| 37 | Schema::connection($this->connection)->create($this->collection, function (Blueprint $collection) { |
||
| 38 | if (method_exists($this, 'migrate')) { |
||
| 39 | $this->migrate($collection); |
||
| 40 | } |
||
| 60 |