Search code examples
innodbmysql-workbenchfull-text-search

How do I set Full Text on MySQL Workbench?


I'm trying to set the Full Text property for some columns within a table in a MySQL InnoDB database.

I can't find the option on MySQL Workbench and I've tried various searches on Google to find out how but I couldn't find anything.

These are my current options:

PK  = Primary Key
NN  = Not Null
UQ  = Unique Key
BIN = Binary
UN  = Unsigned
ZF  = Zero Filled
AI  = Auto Increment

MW Screenshot of property options

Where can I find the Full Text option on MySQL Workbench?


Solution

  • FULLTEXT is an index type, not a column attribute. When you create an index you can select any of INDEX, UNIQUE, FULLTEXT and PRIMARY types. See the table editor, on the "Index" tab.

    enter image description here