From e2577f88945819ca97d2862786b9dfb5552de547 Mon Sep 17 00:00:00 2001 From: Alejandro <25-alejandro@users.noreply.git.krews.org> Date: Thu, 1 Aug 2019 20:45:08 +0300 Subject: [PATCH] Use utf8 in items --- sqlupdates/2_1_1_TO_2_2_0-RC-1.sql | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sqlupdates/2_1_1_TO_2_2_0-RC-1.sql b/sqlupdates/2_1_1_TO_2_2_0-RC-1.sql index 0e934e61..2c51b344 100644 --- a/sqlupdates/2_1_1_TO_2_2_0-RC-1.sql +++ b/sqlupdates/2_1_1_TO_2_2_0-RC-1.sql @@ -49,3 +49,5 @@ ADD COLUMN `limit` int(11) NOT NULL DEFAULT -1; ALTER TABLE `users_pets` ADD COLUMN `mp_is_dead` tinyint(1) NOT NULL DEFAULT 0; + +ALTER TABLE `items` CHARACTER SET = utf8, COLLATE = utf8_general_ci;