Joined: Wed Nov 21, 2012 9:32 pm Posts: 2
|
Hi, I would like to add foreign keys using DelegatingReverseEngineeringStrategy overrides. Please help how to do that.
I'm using Postgres db and I want to generate foreign keys fror VIEWS. All the views have instead of triggers to modify the orig tables. All the view has id field for primary key @SuppressWarnings("rawtypes") @Override public List getPrimaryKeyColumnNames(TableIdentifier identifier) { return new ArrayList<String>(Arrays.asList("id")); }
I need only a simle sample to add FK to view.
Thank You
|
|