Dears,
I have multiple tables and I need to add extra columns in each, I added them entity classes but hibernate stilldoesn't create them, I even tried to use the added columns in hql queries but it gives an error that property doesn't exist.
Columns I want to add:
@Column (name = "CREATED_BY")
private String createdBy;
private String active;
I retrieved an object and tried to print the value of active. it said this propery doesn't exist.
#{obj.active}