| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | public function up() |
||
| 14 | { |
||
| 15 | Schema::table('users', function (Blueprint $table) { |
||
| 16 | $table->string('photo')->nullable(); |
||
| 17 | $table->integer('cb_roles_id'); |
||
| 18 | $table->ipAddress("ip_address")->nullable(); |
||
| 19 | $table->string("user_agent")->nullable(); |
||
| 20 | $table->timestamp("login_at")->nullable(); |
||
| 21 | }); |
||
| 36 |