Files
Sio-Back/database/seeds/DatabaseSeeder.php
SIO Admin de656b70a2 feat: Actualizacion sistema SIO Backend
- Nuevo modulo de historial de cambios (ServicioHistorial)
- Observer para tracking automatico de cambios en servicios
- Correccion de variables auxiliar en ServiciosController
- Actualizacion de configuraciones y migraciones
- Endpoint para consultar historial de cambios

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-17 23:01:55 +00:00

40 lines
1.4 KiB
PHP
Executable File

<?php
use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
$this->call(TiposServiciosTableSeeder::class);
$this->call(ServiciosTableSeeder::class);
$this->call(FormasPagosTableSeeder::class);
$this->call(EstatusServiciosTableSeeder::class);
$this->call(TiposVehiculosTableSeeder::class);
$this->call(VehiculosTableSeeder::class);
$this->call(TiposEmpleadosTableSeeder::class);
$this->call(SucursalesTableSeeder::class);
$this->call(RolesTableSeeder::class);
$this->call(UsersTableSeeder::class);
$this->call(CatFacturacion::class);
//$this->call(ClientesTableSeeder::class);
//$this->call(SolicitudesServicioTableSeeder::class);
$this->call(ParametrosTableSeeder::class);
$this->call(VehiculosSucursalesTableSeeder::class);
$this->call(CatOrigenesTableSeeder::class);
$this->call(PreguntasEmpresarialTableSeeder::class);
$this->call(RespuestasEmpresarialTableSeeder::class);
$this->call(PreguntasDomesticoTableSeeder::class);
$this->call(RespuestasDomesticoTableSeeder::class);
$this->call(PreguntasRespuestasNuevasTableSeeder::class);
$this->call(ColoresWebEstatusServicio::class);
}
}