I m trying to use liquibase in order to generate my current database. The code in the sql file is like this

ALTER TABLE RES ADD CONSTRAINT UK_RES_UNIQUENAME UNIQUE
(
  RES_UNIQUENAME(255)
)

If i dont set the length of the index, it will make the following error in mysql since RES_UNIQUENAME 's type is varchar(1000)

"max key length is 767 bytes" 

However, i cannot find the matching declaration in liquibase. Everything i can search from google leading to

 <createIndex indexName="UK_RES_UNIQUENAME" tableName="res" unique="true">
     <column name="RES_UNIQUENAME" />
 </createIndex>

Does any one know how I can declare the length of the index ?

link|improve this question

62% accept rate
You are hitting some limitations on mysql. stackoverflow.com/questions/1814532/… – Jayan Feb 21 at 11:28
The only solution i found is using the <sql> tag of liquibase and insert the whole "alter table" statement in it. Thank for your link, anyway :) – bubuzzz Feb 21 at 14:58
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.