I have a set of feature toggles configured in an ENUM.
If I insert a value into the TOGGLZ table, i can override this flag. How can I block this? Is my config wrong?
getFlag(my_fag) == false;
insert into TOGGLZ values ('my_flag','1','null','null')
getFlag(my_fag) == true; // i expect false
Any one an idea?