Hello all, I have a new strategy I have implemented in EclipseLink migration. I faced a particular situation where the ID was not generated during the persistence of an entity causing a lot of SQLIntegrityViolations. To overcome this, I used GenerationType.TABLE for ID generation on the entity that faced the most trouble with this (LoanRepaymentScheduleInstallment entity). For damage control, it's the only entity that has this change.
I already have a sample of it on my PR at https://github.com/apache/fineract/pull/928. It has been tested against the current IT tests we have and it seems to work fine. Now I'd like to get your opinion on this, is this something that will pose a problem in production, or can we roll with it? Thanks, Regards, Y. K. Nasser
