August 2017
Intermediate to advanced
332 pages
9h 16m
English
Let's say we need to rename the result column to sum. The first step is to add a new column that will be a duplicate. We must create a src/main/resources/db/migration/V3__Add_sum_column.sql migration file:
alter table CALCULATIONadd SUM varchar(100);
As a result, after executing the migration, we have two columns: result and sum.
Read now
Unlock full access