Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 611
Dom Avatar asked Aug 06 '13 22:08

Dom


1 Answers

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

like image 129
Mike Lischke Avatar answered Sep 28 '22 09:09

Mike Lischke