From 9e088ca4da2d21a1a0fe16d28fc923ce38321e06 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Joshua=20R=C3=BCsweg?= Date: Sun, 28 Oct 2018 13:50:17 +0100 Subject: [PATCH] Change type of *ReactionsReceived column to int(10) See #2508 --- wcfsetup/setup/db/install.sql | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wcfsetup/setup/db/install.sql b/wcfsetup/setup/db/install.sql index 80786e7644..bd2ff80867 100644 --- a/wcfsetup/setup/db/install.sql +++ b/wcfsetup/setup/db/install.sql @@ -1456,9 +1456,9 @@ CREATE TABLE wcf1_user ( disableCoverPhotoReason TEXT, disableCoverPhotoExpires INT(10) NOT NULL DEFAULT 0, articles INT(10) NOT NULL DEFAULT 0, - positiveReactionsReceived MEDIUMINT(7) NOT NULL DEFAULT 0, - negativeReactionsReceived MEDIUMINT(7) NOT NULL DEFAULT 0, - neutralReactionsReceived MEDIUMINT(7) NOT NULL DEFAULT 0, + positiveReactionsReceived INT(10) NOT NULL DEFAULT 0, + negativeReactionsReceived INT(10) NOT NULL DEFAULT 0, + neutralReactionsReceived INT(10) NOT NULL DEFAULT 0, KEY username (username), KEY email (email), -- 2.20.1