How to create an index for a 'TEXT' column in a MySQL database by means of JPA/Hibernate
I need to create an index for a 'TEXT' column in a MySQL database. I can't do it using this annotation @Table(name = "table1", indexes = @Index(name = "ix_table1_column1", columnList = "column1")) as MySQL can only index the first N…