a few more tables that may blowup on utf8mb4 and need no more than latin1

This commit is contained in:
UbitUmarov
2020-12-16 01:46:11 +00:00
parent f7597adcfb
commit 51e69e8b4f
2 changed files with 2 additions and 2 deletions

View File

@@ -9,6 +9,6 @@ CREATE TABLE IF NOT EXISTS `Friends` (
`Offered` varchar(32) NOT NULL DEFAULT '0',
PRIMARY KEY (`PrincipalID`(36),`Friend`(36)),
KEY `PrincipalID` (`PrincipalID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
COMMIT;

View File

@@ -11,6 +11,6 @@ CREATE TABLE IF NOT EXISTS `Presence` (
UNIQUE KEY `SessionID` (`SessionID`),
KEY `UserID` (`UserID`),
KEY `RegionID` (`RegionID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
COMMIT;