Carga inicial
This commit is contained in:
29
database/seeds/ParametrosTableSeeder.php
Normal file
29
database/seeds/ParametrosTableSeeder.php
Normal file
@@ -0,0 +1,29 @@
|
||||
<?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',
|
||||
]
|
||||
]);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user