/var/www/vhosts/ihelp.ro/httpdocs/src/Model/Table
Edit: /var/www/vhosts/ihelp.ro/httpdocs/src/Model/Table/CountiesTable.php (1186B)
setTable('counties');
$this->setDisplayField('name');
$this->setPrimaryKey('id');
$this->hasMany('Cities', [
'foreignKey' => 'county_id',
]);
$this->hasMany('UserAddresses', [
'foreignKey' => 'county_id',
]);
}
/**
* Default validation rules.
*/
public function validationDefault(Validator $validator): Validator
{
$validator
->integer('id')
->allowEmptyString('id', null, 'create');
$validator
->scalar('name')
->maxLength('name', 255)
->requirePresence('name', 'create')
->notEmptyString('name');
return $validator;
}
}