Is there a way to force liquibase into using different db type for a column of generic type?
I've seen this: Force Liquibase to map Blob to BYTEA on PostgreSQL and it's not what I would like to do, since changelog is generated by maven plugin, and I like it that way better since there's no overhead for developers (no need to edit it)
Is there a way to register/override types in liquibase for specified database without editing changelog itself?
Example: mysql: we get datetime instead of explicit datetime(6) or bit(1) instead of tinyint(1)