Add reaction_type database table
authorJoshua Rüsweg <josh@bastelstu.be>
Mon, 9 Apr 2018 18:30:42 +0000 (20:30 +0200)
committerJoshua Rüsweg <josh@bastelstu.be>
Mon, 9 Apr 2018 18:30:42 +0000 (20:30 +0200)
See #2508

wcfsetup/setup/db/install.sql

index 10f7c052d8111822ef5e40365412610695078be7..8e2cfe3357418ee2090c981636c1088b3d2f3b35 100644 (file)
@@ -1155,6 +1155,19 @@ CREATE TABLE wcf1_poll_option_vote (
        UNIQUE KEY vote (pollID, optionID, userID)
 );
 
+DROP TABLE IF EXISTS wcf1_reaction_type; 
+CREATE TABLE wcf1_reaction_type(
+       reactionTypeID INT(10) NOT NULL AUTO_INCREMENT PRIMARY KEY, 
+       reactionTitle VARCHAR(255), 
+       type SMALLINT(1),
+       showOrder INT(10) NOT NULL DEFAULT 0,
+       iconType SMALLINT(1) DEFAULT 1,
+       iconFile MEDIUMTEXT, 
+       iconName VARCHAR(255),
+       iconColor VARCHAR(255),
+       isDisabled TINYINT(1) NOT NULL DEFAULT 0
+);
+
 DROP TABLE IF EXISTS wcf1_registry;
 CREATE TABLE wcf1_registry (
        packageID INT(10) NOT NULL,