- 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>
30 lines
622 B
PHP
Executable File
30 lines
622 B
PHP
Executable File
<?php
|
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class ParametrosTableSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
DB::table('parametros')->insert([
|
|
[
|
|
'llave' => 'INTERVALO_GEOLOCALIZACION_OPERADOR_MINUTOS',
|
|
'valor' => '3',
|
|
],
|
|
[
|
|
'llave' => 'ANCLAJE_SERVICIO_HORAS',
|
|
'valor' => '3',
|
|
],
|
|
[
|
|
'llave' => 'CURRENT_VERSION_APPLICATION',
|
|
'valor' => '0.40',
|
|
]
|
|
]);
|
|
}
|
|
}
|