I would like to change a column in the DB for the status of a package in my application, something like:
- Pending ( should be default )
- Cleared
- Updated
The current column is boolean data type. I was thinking of changing to ENUM data type, but I'm not sure if that will be a good choice and how to go about it. Do you have any suggestions?