Skip to content

Instantly share code, notes, and snippets.

@jonniesweb
Created March 26, 2016 02:56
Show Gist options
  • Save jonniesweb/7a52e2cdb712cd3c7af2 to your computer and use it in GitHub Desktop.
Save jonniesweb/7a52e2cdb712cd3c7af2 to your computer and use it in GitHub Desktop.
Liquibase configuration for a FULLTEXT index on a mediumtext field
<!-- 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