1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-28 00:06:53 +01:00
unleash.unleash/src/migrations/20240425132155-flag-trends-bigint.js
Jaanus Sellin 68e7a3164e
fix: flag trends should support bigint for yes and no evaluations (#6930)
Recently we see some pods failing with inserting yes, no values that
were over int. Increasing type to bigint.
2024-04-25 14:02:04 +03:00

15 lines
293 B
JavaScript

exports.up = function (db, cb) {
db.runSql(`
ALTER TABLE flag_trends ALTER COLUMN total_yes TYPE bigint;
ALTER TABLE flag_trends ALTER COLUMN total_no TYPE bigint;
`, cb);
};
exports.down = function (db, cb) {
db.runSql(
`
`,
cb,
);
};