I'm creating a new data model for a new web application constructed using spring and hibernate.
The data model is currently 3nf, I've got my sequencer-generated primary keys, foreign key relationships are all defined properly, etc.
But as I review the hibernate doco I'm starting to wonder if I should be adding some elements to facilitate hibernate...
For example, in order to support the detached pojos I'm thinking I need to include a 'version' column to support the version tag of the definition file...
Basically I need to know if there are things that I should add to my data model (like the version column) that will make hibernate usage better...
|