File: /var/www/heifetz/heifetz-app/models/UserLogHistory.php
<?php
namespace Models;
use Core\DbLib\DbModel;
/**
* @property int $id
* @property int $user_id
* @property string $entity
* @property int $entity_id
* @property string $column
* @property string $value
* @property string $created_at
* @property string $action
* @property int $company_id
*/
class UserLogHistory extends DbModel
{
public static string $tableName = 'user_logs_history';
public static function add($data)
{
self::create($data);
}
}