...
Code Block |
---|
<dependency> <groupId>org.openmrs.liquibase.ext</groupId> <artifactId>identity-insert</artifactId> <version>1.2.1-SNAPSHOT</version> </dependency> |
Type Converter
After upgrading liquibase to version 2.0.3, all changesets of column data type TEXT are mapped to LONGTEXT in MySQL. The effect of this is that MySQL users end up with excessively long text fields. The Type-Converter Liquibase extension allows mapping them to TEXT, when the database is found to be MySQL.
Maven code for type converter:
Code Block |
---|
<dependency>
<groupId>org.openmrs.liquibase.ext</groupId>
<artifactId>type-converter</artifactId>
<version>1.0.1</version>
</dependency>
|