Hi, I'm having strange issue on Phalcon 2.0.X and don't really know how should I even debug it. I've created a simple mysql table made of a few columns. One of them is item_condition
column which basicly is an enum with a few options. And here is the problem:
I'm unable to update/save this model because it's constantly returning error message: item_condition is required
even though it's already there and remains untouched. It works well after changing that field to varchar so I think that it's some issue with comparing strings of enums (What it says it's basicly that 'State1' from database != 'State1' in model fulfiled from database. What should I do?
edit: looks like this problem is fixed in phalcon 2.1.x