Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: 1024pix/pix
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: e82c8f965d5975ae2189dfdb8ba209922948d60a
Choose a base ref
..
head repository: 1024pix/pix
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 4143c8f84f99a31411e9330e58490bc9be2c85fc
Choose a head ref
Showing with 1 addition and 0 deletions.
  1. +1 −0 api/db/migrations/20241128152506_remove-unused-columns-in-flash-algorithm-configurations-table.js
Original file line number Diff line number Diff line change
@@ -12,6 +12,7 @@ const up = function (knex) {
table.dropColumn(MINIMUM_ESTIMATED_SUCCESS_RATE_RANGES_COLUMN_NAME);
table.dropColumn(DOUBLE_MEASURES_UNTIL_COLUMN_NAME);
table.dropColumn(VARIATION_PERCENT_UNTIL_COLUMN_NAME);
table.comment(`Configuration parameters used to alter the behaviour of the flash algorithm.`);
});
};