Skip to content

Commit

Permalink
fix capitalization migration file
Browse files Browse the repository at this point in the history
  • Loading branch information
07joshua03 committed Nov 13, 2024
1 parent acfd24f commit bf41d52
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public class V202410026__Add_administration_costs extends BaseJavaMigration {
*/
public void migrate(Context context) throws Exception {
try (Statement select = context.getConnection().createStatement()) {
select.execute("ALTER TABLE public.orders ADD COLUMN administrationCosts DOUBLE PRECISION NOT NULL DEFAULT 0");
select.execute("ALTER TABLE public.orders ADD COLUMN administration_costs DOUBLE PRECISION NOT NULL DEFAULT 0");
}
}

Expand Down

0 comments on commit bf41d52

Please sign in to comment.