Hi Ryan,
I was able to reproduce the issue with a non-system enum; Non-system enums (e.g. sysEdit) can be edited in the Admin Console, therefore are not updated during the reseed/reload.
When updating a non-system enum in Studio, it is necessary to also delete them from the EnumCode and EnumDisplay tables (like below). However, this would mean any changes to the Caption that may have been made in the Admin Console would be overwritten.
It is a bug that the Admin Console shows the “updated” external Value even though it is not actually being used. I’ve logged that and hope to fix shortly.
Thanks!
<SQL><![CDATA[delete from ${table:EnumCode} where valueCode=’ANNUITANT’ and typeCode=’SENTITYACCOUNTROLE’]]></SQL>
<SQL><![CDATA[delete from ${table:EnumDisplay} where valueCode=’ANNUITANT’ and typeCode=’SENTITYACCOUNTROLE’]]></SQL>.