Skip to content

Commit

Permalink
deploy: use utf8mb4
Browse files Browse the repository at this point in the history
  • Loading branch information
blackholll committed Feb 1, 2022
1 parent 83978da commit 378c012
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sphinx_docs/source/about/start.rst
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
::

# 进入mysql后创建数据库并授权
mysql> create database loonflow character set utf8; # 注意要使用utf8字符集
mysql> CREATE DATABASE loonflow DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; # 注意要使用utf8mb4字符集
mysql> grant all privileges on loonflow.* to loonflow@'%' identified by '123456';


Expand Down

0 comments on commit 378c012

Please sign in to comment.