mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
15 lines
360 B
PHP
Executable File
15 lines
360 B
PHP
Executable File
<?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';
|
|
} |