timestamp('last_active_at')->nullable()->index()->after('deleted_at'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('users', function (Blueprint $table) { $table->dropColumn('last_active_at'); }); } }