Files
safekat/ci4/app/Models/CronTabModel.php
2023-04-24 13:00:46 +02:00

15 lines
360 B
PHP

<?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';
}