Commit 68523d05 by 张乐 Committed by GitHub

Merge pull request #550 from nobodyiam/fix-index-size

fix utf8mb4 index size
parents 5ae8d214 896fd22a
......@@ -33,7 +33,7 @@ CREATE TABLE `App` (
PRIMARY KEY (`Id`),
KEY `AppId` (`AppId`(191)),
KEY `DataChange_LastTime` (`DataChange_LastTime`),
KEY `Name` (`Name`)
KEY `IX_Name` (`Name`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='应用表';
......
......@@ -33,7 +33,7 @@ CREATE TABLE `App` (
PRIMARY KEY (`Id`),
KEY `AppId` (`AppId`(191)),
KEY `DataChange_LastTime` (`DataChange_LastTime`),
KEY `Name` (`Name`)
KEY `IX_Name` (`Name`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='应用表';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment