MySQL non supporta i vincoli CHECK.
È stato un elemento della lista dei desideri per anni (https://bugs.mysql.com/ bug.php?id=3464 ).
Il team MySQL ha pubblicato un blog sulle soluzioni alternative: http://mysqlserverteam.com/new-and-old-ways-to-emulate-check-constraints-domain/
Nel tuo caso potresti considerare:
CONSTRAINT Check_Status FOREIGN KEY (Status) REFERENCES StatusTypes (Status)
E poi crea una tabella StatusTypes
con le tre righe a cui vuoi limitarlo.