I want to add a check constraint for example
ALTER TABLE fruit
ADD CONSTRAINT check_colour CHECK(color IN ('black','white', 'green'))
I can do it in the command line, however, I can't find the option to add a check constraint in Mysql Workbench. I can only find triggers, but not check constraints.