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

Popular posts from this blog

How has firefox/gecko HTML+CSS rendering changed in version 38? -

javascript - Complex json ng-repeat -

jquery - Cloning of rows and columns from the old table into the new with colSpan and rowSpan -