You can download the code for this example here:
OnyxDevTools/onyx-database-samples/model-updates/
... UpdateRelationshipDemo.java.
There are 2 parts to this example. The first part is to create an existing database containing the original structure of your model. The second is to modify specific parts of the model and observe how the database handles the updates.
In this example you will see how to change a relationship from a OneToOne type to a OneToMany.
Onyx supports changing any relationship from a To One to a To Many however, changing a To Many to a To One is not supported. The reason for that is because Onyx can not automatically determine which record to associate as the To One relationship due to not having the prior To One constraint. If you need to make a change like that you must use the PersistenceManager.stream API to perform a manual migration.
An example of a manual migration can be found here: Manual Migration Example
As you can see the Invoice has a relationship type of RelationshipType.ONE_TO_ONE and the inverse within the Payment also has a relationship type of RelationshipType.ONE_TO_ONE. This is flawed since it is possible to make multiple payments and apply it to a single invoice.
In order to observe how the database reacts to changes we need to create a script to load sample data before updating the relationship model of the Invoice and Payment com.onyxdevtools.entities.
Connect to a new database and seed the data.
The Invoice to Payment relationship has been changed from a RelationshipType.ONE_TO_ONE to a RelationshipType.MANY_TO_ONE and the Payment to Invoice relationship has been changed from a RelationshipType.ONE_TO_ONE to a RelationshipType.ONE_TO_MANY.
Create a script to reconnect to the database.
Verify you can associate multiple payments after updating the data model by persisting multiple payments and applying them to the same invoice.
Our goal is to bring about change by enabling people to use simple and quality software in order to make sad engineers happy.
Copyright ©2017 Onyx Development Tools, LLC. All rights reserved.