Hi,
I have an entity, an attribute is a enum type:
public enum MyEnum { AA, BB, CC, DD; }
I populated the database, than I changed the enum types deleting some unused types (es. AA) without reset database:
public enum MyEnum { BB, CC, DD; }
Now there are mismatches with enums in database. It looks as if objectdb keeps the "position" of enum. For example: attributes of entity set to ENUM.BB (second position before the change) now are set to ENUM.CC (second position after the change).
It is a correct behaviour?
Thanks in advance!