Is there anyway to force-set the id in a new record?
when i do:
$model = new anyModelClass;
$model->id = $di->getShared('uniqueness')->generateUid();
$model->save();
I got the register in theDatabase but not the recordTimestamp for create (it fires in the beforeCreate).
My question is : is there a problem with setting id manually?
Thanks!