Fix envío reset password con notificación directa
This commit is contained in:
@@ -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');
|
||||
|
||||
Reference in New Issue
Block a user