From: Joshua Rüsweg Date: Sun, 28 Oct 2018 12:50:17 +0000 (+0100) Subject: Change type of *ReactionsReceived column to int(10) X-Git-Tag: 5.2.0_Alpha_1~569 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=9e088ca4da2d21a1a0fe16d28fc923ce38321e06;p=GitHub%2FWoltLab%2FWCF.git Change type of *ReactionsReceived column to int(10) See #2508 --- 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),