When I bump liquibase version up from 2.0.5 to 3.5.4. below error has occurred.
Value too long for column "LOCKED CHAR(1) NOT NULL": "'TRUE' (4)"
It seems DATABASECHANGELOGLOCK’s LOCKED field datatype is changed char(1) to char(5).
Is there any way to avoid this issue? Should I manually update the LOCKED field datatype before running liquibase?
Thanks in advance.