Fix envío reset password con notificación directa

This commit is contained in:
2026-02-25 09:29:43 -06:00
parent 2533af98c8
commit 969360c1ed
17 changed files with 512 additions and 67 deletions
@@ -19,7 +19,7 @@ return new class extends Migration
$table->string('telefono',20)->nullable()->unique();
$table->string('direccion')->nullable();
$table->string('password');
$table->string('code')->nullable();
$table->string('code')->default(0);
$table->boolean('status');
$table->rememberToken();
$table->foreignId('current_team_id')->nullable();
@@ -6,19 +6,21 @@ use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('horarios', function (Blueprint $table) {
$table->id();
$table->unsignedBigInteger('user_id');
$table->string('dia');
$table->time('entrada')->nullable();
$table->time('comidas')->nullable();
$table->time('comidar')->nullable();
$table->time('salida')->nullable();
$table->boolean('status');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('horarios');