| Conditions | 3 |
| Paths | 4 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 34 | public function down() |
||
| 35 | { |
||
| 36 | if (Schema::hasColumn('users', 'token')) { |
||
| 37 | Schema::table('users', function (Blueprint $table) { |
||
| 38 | $table->dropColumn('token'); |
||
| 39 | }); |
||
| 40 | } |
||
| 41 | |||
| 42 | if (Schema::hasColumn('users', 'active')) { |
||
| 43 | Schema::table('users', function (Blueprint $table) { |
||
| 44 | $table->dropColumn('active'); |
||
| 45 | }); |
||
| 49 |