diff --git a/database/migrations/2014_10_12_000000_create_users_table.php b/database/migrations/2014_10_12_000000_create_users_table.php index d76068f..1fdb665 100644 --- a/database/migrations/2014_10_12_000000_create_users_table.php +++ b/database/migrations/2014_10_12_000000_create_users_table.php @@ -31,9 +31,9 @@ return new class extends Migration }); DB::table('users')->insert([ [ - 'name' => 'silva', - 'email' => 'silva@silva.com', - 'apellido' => 'anael', + 'name' => 'usuario', + 'email' => 'usuario@usuario.com', + 'apellido' => 'usuario', 'puesto_id' => 2, 'departamento_id' => 2, 'tipos_id' => 2, @@ -73,14 +73,14 @@ return new class extends Migration 'updated_at' => now(), ], [ - 'name' => 'usuario_tipo4', - 'email' => 'tipo4@ejemplo.com', - 'apellido' => 'apellido4', + 'name' => 'jorge', + 'email' => 'jorge@jorge.com', + 'apellido' => 'jorge', 'puesto_id' => 1, 'departamento_id' => 1, 'tipos_id' => 4, 'telefono' => '4444444444', - 'password' => bcrypt('12345678'), + 'password' => bcrypt('servicios123'), 'email_verified_at' => '2025-05-23 18:33:05', 'remember_token' => null, 'created_at' => now(),