Created
March 26, 2016 02:56
-
-
Save jonniesweb/7a52e2cdb712cd3c7af2 to your computer and use it in GitHub Desktop.
Liquibase configuration for a FULLTEXT index on a mediumtext field
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Liquibase change log file. Note the "comment(255)" which allows the index to exist on a mediumtext --> | |
<createIndex indexName="idx_fulltext_comment" tableName="comment"> | |
<column name="comment(255)"/> | |
</createIndex> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment