!190 分组表使用 utf8mb4_unicode_ci

Merge pull request !190 from F4NNIU/fix-auth-group-utf8mb4-unicode
pull/190/MERGE
F4NNIU 2020-04-27 16:02:38 +08:00 committed by Gitee
commit 1a81c45317
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ CREATE TABLE `fa_auth_group` (
`updatetime` int(10) DEFAULT NULL COMMENT '更新时间',
`status` varchar(30) NOT NULL DEFAULT '' COMMENT '状态',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COMMENT='分组表';
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE utf8mb4_unicode_ci COMMENT='分组表';
-- ----------------------------
-- Records of fa_auth_group