diff options
author | shentao999 <shentao@chinamobile.com> | 2019-04-30 22:54:15 +0800 |
---|---|---|
committer | shentao999 <shentao@chinamobile.com> | 2019-04-30 22:54:16 +0800 |
commit | 177e1ae3a46ddf3342f2181925c155805a0f8ba7 (patch) | |
tree | 48fe9aea40152c59842b753ee65b1b0aca7523dc | |
parent | 3b08ba8bbe81c5615c9be6090e3092598aa85f35 (diff) |
Fix unknow language option display bug
Change-Id: Ice97b508145a057ec07b7db584f20a27fa16ad3d
Issue-ID: PORTAL-565
Signed-off-by: shentao999 <shentao@chinamobile.com>
-rw-r--r-- | ecomp-portal-DB-common/PortalDDLMySql_2_1_Common.sql | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ecomp-portal-DB-common/PortalDDLMySql_2_1_Common.sql b/ecomp-portal-DB-common/PortalDDLMySql_2_1_Common.sql index 2cf5b75c..7469c60b 100644 --- a/ecomp-portal-DB-common/PortalDDLMySql_2_1_Common.sql +++ b/ecomp-portal-DB-common/PortalDDLMySql_2_1_Common.sql @@ -13,6 +13,12 @@ set foreign_key_checks=1; create database portal; +SET GLOBAL character_set_client = utf8; +SET GLOBAL character_set_connection = utf8; +SET GLOBAL character_set_database = utf8; +SET GLOBAL character_set_results = utf8; +SET GLOBAL character_set_server = utf8; + use portal; -- ------------------ create table section |