From 7f5b5d692b8eb2c030d4cf6c208aa9b397e1aa48 Mon Sep 17 00:00:00 2001 From: Jaanus Sellin Date: Thu, 25 Apr 2024 15:13:19 +0300 Subject: [PATCH] =?UTF-8?q?Revert=20"fix:=20flag=20trends=20should=20suppo?= =?UTF-8?q?rt=20bigint=20for=20yes=20and=20no=20evaluations=20(#6=E2=80=A6?= =?UTF-8?q?"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit 68e7a3164ec9c185f4df0b5dc557d43383b83cf5. --- .../20240425132155-flag-trends-bigint.js | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 src/migrations/20240425132155-flag-trends-bigint.js diff --git a/src/migrations/20240425132155-flag-trends-bigint.js b/src/migrations/20240425132155-flag-trends-bigint.js deleted file mode 100644 index 18ddaf2dab70..000000000000 --- a/src/migrations/20240425132155-flag-trends-bigint.js +++ /dev/null @@ -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, - ); -};