I have a changeset which does not get executed after I have upgrade liquibase-core to 4.8.0 version.
I am using postgres DB here.
Fails with below error:
caused by: liquibase.exception.LiquibaseException: liquibase.exception.MigrationFailedException: Migration failed for change set db/changelog/liquibase/release/db.changelog-release-xml
Reason: liquibase.exception.DatabaseException: ERROR: column "xyz" of relation "abc" is an identity column [Failed SQL: (0) ALTER TABLE abc ALTER COLUMN xyz SET DEFAULT nextval('custom_seq')]
Not sure what is wrong here.
What do I change to make this right ? What's an identity column ?