cerebrate/src/Model/Entity/Individual.php

20 lines
302 B
PHP
Raw Normal View History

<?php
namespace App\Model\Entity;
use App\Model\Entity\AppModel;
use Cake\ORM\Entity;
class Individual extends AppModel
{
protected $_accessible = [
'*' => true,
'id' => false,
'uuid' => false,
];
2021-06-28 14:49:38 +02:00
protected $_accessibleOnNew = [
'uuid' => true,
];
}