Clean up utf8mb4 setting in default table schema

This commit is contained in:
Kijin Sung 2021-01-22 01:01:58 +09:00
parent f751d59708
commit 2cec4ea6b4
6 changed files with 11 additions and 7 deletions

View file

@ -1,5 +1,5 @@
<table name="module_config">
<column name="module" type="varchar" size="80" notnull="notnull" primary_key="primary_key" />
<column name="module" type="varchar" size="80" notnull="notnull" primary_key="primary_key" charset="latin1" />
<column name="site_srl" type="number" size="11" notnull="notnull" />
<column name="config" type="bigtext" />
<column name="regdate" type="date" />

View file

@ -1,5 +1,5 @@
<table name="module_part_config">
<column name="module" type="varchar" size="80" notnull="notnull" unique="unique_module_part_config" utf8mb4="false" />
<column name="module" type="varchar" size="80" notnull="notnull" unique="unique_module_part_config" charset="latin1" />
<column name="module_srl" type="number" size="11" notnull="notnull" unique="unique_module_part_config" />
<column name="config" type="bigtext" />
<column name="regdate" type="date" />

View file

@ -1,7 +1,7 @@
<table name="sites">
<column name="site_srl" type="number" size="11" notnull="notnull" primary_key="primary_key" />
<column name="index_module_srl" type="number" size="11" default="0" />
<column name="domain" type="varchar" size="255" notnull="notnull" unique="unique_domain" utf8mb4="false" />
<column name="default_language" type="varchar" size="255" />
<column name="domain" type="varchar" size="191" notnull="notnull" unique="unique_domain" />
<column name="default_language" type="varchar" size="191" />
<column name="regdate" type="date" />
</table>