Make field not editable for created records

Hello, Iā€™m new to corteza.
Is it possible to disallow editing of field of already created records in compose? I mean user should be able to set fieldā€™s value when creating a record, but should not be able to change it after.
Setting ā€œdenyā€ on ā€œupdateā€ permission of field means that user will not be able to set the field when creating a new record, so this is not suitable.
For now I thinking about making an automation script with trigger before(ā€˜updateā€™) which will throw an error if field was changed, but maybe exists better solution.

You should be able to disable updating without blocking creating a new record.
Iā€™m using it without any problem.

Can you please explain or show screenshot where to find such option to do that?
In window ā€œSet permissions for field ā€œā€¦ā€ā€ I have only options ā€œRead ā€œā€¦ā€ record fieldsā€ and ā€œUpdate ā€œā€¦ā€ record fieldsā€ and latter doesnā€™t allow to change field when creating a new record.

Also instead of using automation script, I later found that it is possible to do with field validation in fieldā€™s settings by using expression ā€œoldValue != ā€˜ā€™ && value != oldValueā€. But it will be better to not allow change field at all like with denied permissions instead of showing error.