string('profile_photo_path', 2048)->nullable()->after('email'); $table->datetime('last_login_at')->nullable(); $table->string('last_login_ip')->nullable(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('users', function (Blueprint $table) { $table->dropColumn('profile_photo_path'); $table->dropColumn('last_login_at'); $table->dropColumn('last_login_ip'); }); } };