Hi,
I have applied changesets to a Oracle DB. Now I am reruning update to get apply another set of change sets. On the second update, I get the following error:
liquibase.exception.DatabaseException: Error executing SQL ALTER TABLE DATABASECHANGELOG MODIFY ( MD5SUM VARCHAR2(35)
I sent the output to a sql file and this is what I saw:
– Lock Database
– Modifying size of databasechangelog.md5sum column
– Modifying size of databasechangelog.liquibase column
ALTER TABLE DATABASECHANGELOG MODIFY ( MD5SUM VARCHAR2(35);
ALTER TABLE DATABASECHANGELOG MODIFY ( LIQUIBASE VARCHAR2(20);
That doesn’t look like proper sql. A bug? Also why is the databasechangelog table being modified to begin with?
Thanks,
Alana