Skip to:
When running Liquibase with the following changeLog:
the id column is created but is not auto-incrementing. Adding the generationType attribute, works around the problem:
id
generationType
It would be better if Liquibase didn't silently fail in the first example but instead used a default generationType, such as BY DEFAULT.
BY DEFAULT
Oracle 12c
When running Liquibase with the following changeLog:
the
id
column is created but is not auto-incrementing. Adding thegenerationType
attribute, works around the problem:It would be better if Liquibase didn't silently fail in the first example but instead used a default
generationType
, such asBY DEFAULT
.