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 ?