orm - Openjpa generate entities from table skips one column -
i have table following schema (for keeping logs):
* bigint id * timestamp time varchar(255) nullable comment varchar(255) description integer nullable affected_object_id
when generate entity table results in :
@embeddedid private historypk id; private string comment; private string description; ... getters/setters ...
i use rad 8.5.5.1, built on top of eclipse platform 3.6.3. database db2 9.1.
somehow affected_object_id not translated entity. can fix it? (i know can fix manually in code, want trust ide) or may i'm doing wrong?
i tried disconnecting , connecting again database, no avail.
cleaning project did fixed it.
Comments
Post a Comment