timestamp('last_seen')->nullable(); }); } public function down() { if (Schema::hasColumn('users', 'last_seen')) { Schema::table('users', function($table) { $table->dropColumn('last_seen'); }); } } }