| Conditions | 3 |
| Paths | 4 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 14 | public function up() |
||
| 15 | { |
||
| 16 | if (!Schema::hasColumn('users', 'token')) { |
||
| 17 | Schema::table('users', function (Blueprint $table) { |
||
| 18 | $table->string('token', 24)->unique()->after('remember_token'); |
||
| 19 | }); |
||
| 20 | } |
||
| 21 | |||
| 22 | if (!Schema::hasColumn('users', 'active')) { |
||
| 23 | Schema::table('users', function (Blueprint $table) { |
||
| 24 | $table->tinyInteger('active')->default(0)->after('token'); |
||
| 25 | }); |
||
| 49 |