string('ip')->nullable(); $table->dateTime('last_seen')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('users', function (Blueprint $table) { $table->dropColumn('ip'); $table->dropColumn('last_seen'); }); } };