There is a list in the database enum ('name_1', 'name_2', 'name_3'). A controller and model was created, everything works fine.
Later I changed the list to ('new_name_1', 'new_name_2', 'new_name_3'), but in the data entry form I still see the old list ('name_1', 'name_2', 'name_3'), respectively when I try to save it pops up mistake because There is a mismatch with the base.
Tell me, is it possible to change the enum list somewhere? I understand that it was fixed somewhere when creating a model or controller.
Thank.