Change data type of module_config.config to bigtext

xpressengine/xe-core#2179
xpressengine/xe-core#2180
This commit is contained in:
Kijin Sung 2017-11-27 13:03:47 +09:00
parent 6d6acd5c9e
commit a8da651f29
4 changed files with 17 additions and 3 deletions

View file

@ -1,6 +1,6 @@
<table name="module_config">
<column name="module" type="varchar" size="250" notnull="notnull" primary_key="primary_key" />
<column name="site_srl" type="number" size="11" notnull="notnull" />
<column name="config" type="text" />
<column name="config" type="bigtext" />
<column name="regdate" type="date" />
</table>