Files
Sio-Back/database/seeds/ParametrosTableSeeder.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

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',
]
]);
}
}