mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
trabajando en la lista de tickets
This commit is contained in:
@ -37,6 +37,12 @@ class TicketsSeeder extends Seeder
|
||||
[
|
||||
'keyword' => 'logistica',
|
||||
],
|
||||
[
|
||||
'keyword' => 'configuracion',
|
||||
],
|
||||
[
|
||||
'keyword' => 'general',
|
||||
],
|
||||
];
|
||||
$this->db->table('tickets_secciones')->insertBatch($data);
|
||||
|
||||
@ -56,5 +62,15 @@ class TicketsSeeder extends Seeder
|
||||
],
|
||||
];
|
||||
$this->db->table('tickets_estados')->insertBatch($data);
|
||||
|
||||
// config variables
|
||||
$data = [
|
||||
[
|
||||
'name' => 'default_soporte_user_id',
|
||||
'value' => '10',
|
||||
'description' => 'ID del usuario por defecto para asignar tickets',
|
||||
],
|
||||
];
|
||||
$this->db->table('config_variables_app')->insertBatch($data);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user