mirror of
https://code.castopod.org/adaures/castopod
synced 2025-06-06 18:31:05 +00:00
21 lines
351 B
PHP
21 lines
351 B
PHP
![]() |
<?php
|
||
|
|
||
|
namespace App\Models;
|
||
|
|
||
|
use CodeIgniter\Model;
|
||
|
|
||
|
class LanguageModel extends Model
|
||
|
{
|
||
|
protected $table = 'languages';
|
||
|
protected $primaryKey = 'id';
|
||
|
|
||
|
protected $allowedFields = [
|
||
|
'code',
|
||
|
];
|
||
|
|
||
|
protected $returnType = 'App\Entities\Language';
|
||
|
protected $useSoftDeletes = false;
|
||
|
|
||
|
protected $useTimestamps = false;
|
||
|
}
|