It depends on architecture and many other factors.
For example, you do not allow reading/writing data except using stored procedures. In this case you can feel free use "tinyint" datatype. If you allow reading/writing with direct queries it should be better to use constraint i.e. ENUM to avoid improper statuses (if UI or back-end can put this "wrong" status of course) .
On the other hand (and it's possible) there can be changes in data flow and maybe you will need to add new statuses. In this case you you will need:
1) do nothing if you have static datatype;
2) do alter if you have ENUM.
So... my answer is: it depends on your application and your requirements.