use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; return new class extends Migration { public function up() { Schema::table('users', function (Blueprint $table) { $table->integer('failed_attempts')->default(0); $table->timestamp('locked_until')->nullable(); }); } public function down() { Schema::table('users', function (Blueprint $table) { $table->dropColumn(['failed_attempts', 'locked_until']); }); } };