Sorry for coming back with this topic but Jmix database migration is most probably playing games with me as he knows I’m no match for him.
As before, I am trying to update the database after including a field in one entity as below:
@Column(name = "ACT_DESCR_FILE", length = 1024)
private FileRef actDescrFile;
public FileRef getActDescrFile() {
return actDescrFile;
}
public void setActDescrFile(FileRef actDescrFile) {
this.actDescrFile = actDescrFile;
}
When trying to run the project or if I call the “Generate Liquibase Changelog” option from the main datastore context menu, I just get the message “The database is already synced with model.”. If I try to run the application, I get an exception “SQLSyntaxErrorException: Unknown column ‘ACT_DESCR_FILE’ in ‘field list’” in the browse screen for the entity.
I checked everything I could, including updating to latest 1.X.X version as below:
License:
Subscription:
Run configuration:
Changelog folder contents:
Any ideas on what am I missing? Thanks.