How can I create a new record with orm only save several column like useDynamicUpdate does?
table
id pk autoincrement
name varchar(20) not null
code
$model = new User();
$model->name = 'Hello';
$model->save();
What can I do if add a new column avatar, the code will go wrong, right? becase avatar
can not be null.
Why phalcon have to add all column but what I wrote?