1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-08-13 13:48:59 +02:00

Revert "fix: flag trends should support bigint for yes and no evaluations (#6…"

This reverts commit 68e7a3164e.
This commit is contained in:
Jaanus Sellin 2024-04-25 15:13:19 +03:00 committed by GitHub
parent 0eaf725e82
commit 7f5b5d692b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,14 +0,0 @@
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,
);
};