mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
Commit realizando cambios en los roles de los usuarios
This commit is contained in:
15
ci4/app/Models/CronTabModel.php
Normal file
15
ci4/app/Models/CronTabModel.php
Normal file
@ -0,0 +1,15 @@
|
||||
<?php
|
||||
namespace App\Models;
|
||||
|
||||
class CronTabModel extends BaseModel
|
||||
{
|
||||
protected $table = 'auth_crontab_history';
|
||||
protected $primaryKey = 'id_crontab';
|
||||
protected $allowedFields = [
|
||||
'routine',
|
||||
'error'
|
||||
];
|
||||
protected $useTimestamps = true;
|
||||
protected $createdField = 'created_at';
|
||||
protected $updatedField = 'updated_at';
|
||||
}
|
||||
Reference in New Issue
Block a user