Issue #36 - Migrate Rental Period to Order - Part 1 - Database Migration
When business requirements change, so does the data model. Let’s move the rental period from the Order Line entity to the Order entity to simplify usage. For that we in this video:
create entity attributes in the Order entity
create a custom SQL Liquibase migration to migrate the data
Issue #37 - Migrate Rental Period to Order - Part 2 - Test Liquibase migration
When business requirements change, so does the data model. Let’s move the rental period from the Order Line entity to the Order entity to simplify usage. For that we will, in this video:
create an Spring integration test that triggers the liquibase migration process
see how to programmatically trigger the migration process
learn how to override Spring beans for test scenarios
verify that the custom SQL based migration is doing the intended thing