Commit 50028820 authored by DongGuoChao's avatar DongGuoChao Committed by linlinjava
Browse files

support emoji

parent 5a93cc6b
drop database if exists litemall;
drop user if exists 'litemall'@'localhost';
create database litemall;
-- 支持emoji:需要mysql数据库参数: character_set_server=utf8mb4
create database litemall default character set utf8mb4 collate utf8mb4_unicode_ci;
use litemall;
create user 'litemall'@'localhost' identified by 'litemall123456';
grant all privileges on litemall.* to 'litemall'@'localhost';
......
Supports Markdown
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