2020-05-29 16:25:17 +00:00
|
|
|
<?php
|
2020-06-10 15:00:12 +00:00
|
|
|
/**
|
|
|
|
* @copyright 2020 Podlibre
|
|
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
|
|
|
* @link https://castopod.org/
|
|
|
|
*/
|
2020-05-29 16:25:17 +00:00
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
|
|
|
|
class CategoryModel extends Model
|
|
|
|
{
|
2020-05-31 19:15:52 +00:00
|
|
|
protected $table = 'categories';
|
2020-05-29 16:25:17 +00:00
|
|
|
protected $primaryKey = 'id';
|
|
|
|
|
2020-06-10 15:00:12 +00:00
|
|
|
protected $allowedFields = ['apple_category', 'google_category'];
|
2020-05-29 16:25:17 +00:00
|
|
|
|
2020-05-31 19:15:52 +00:00
|
|
|
protected $returnType = 'App\Entities\Category';
|
2020-05-29 16:25:17 +00:00
|
|
|
protected $useSoftDeletes = false;
|
|
|
|
|
2020-05-31 19:15:52 +00:00
|
|
|
protected $useTimestamps = false;
|
2020-05-29 16:25:17 +00:00
|
|
|
}
|