I have a table with a enum column called action
. The permitted values currently are:
act1,act2,act3,act4
. I want act3
and act4
to be removed and my table's current state does not contain any rows with act3
or act4
.
When I'm trying to modify the column with the new set of values it's throwing an error
Data Truncated for column action
.
Please suggest how do I remove the required values.