Say i have a datatype called "status" as a row in a mysql table. Status can only be a fixed number of strings, say "active", "inactive" and "pending". What datatype is best practice to use?
- Make another table "statuses" and have an pointer id in my table?
- Make a php array containing the different statuses and use my status-row as index for the array?
- Simply letting status be a string containing the current status?