Merge branch 'fix/correcciones_secundarias' into dev

This commit is contained in:
2026-08-05 10:28:59 -03:00
7 changed files with 75 additions and 25 deletions

View File

@@ -0,0 +1,28 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::table('reset_password_attempts', function (Blueprint $table): void {
$table->string('reason')->default('manual')->after('codigo');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('reset_password_attempts', function (Blueprint $table): void {
$table->dropColumn('reason');
});
}
};