21 lines
367 B
PHP
21 lines
367 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class UserNotificationModel extends Model
|
|
{
|
|
protected $table = 'user_notifications';
|
|
protected $primaryKey = 'id';
|
|
|
|
protected $allowedFields = [
|
|
'notification_id',
|
|
'user_id',
|
|
'is_read',
|
|
'delivered',
|
|
'delivered_at'
|
|
];
|
|
|
|
protected $useTimestamps = false;
|
|
} |