module_part_config 테이블에 unique key 추가

xpressengine/xe-core#2242

이미 있는 idx_module_part_config 인덱스를 대체함.
This commit is contained in:
Kijin Sung 2018-06-11 23:50:38 +09:00
parent bb6dc77acd
commit 26ddd6cdc3
2 changed files with 40 additions and 7 deletions

View file

@ -1,6 +1,6 @@
<table name="module_part_config">
<column name="module" type="varchar" size="180" notnull="notnull" utf8mb4="false" />
<column name="module_srl" type="number" size="11" notnull="notnull" />
<column name="config" type="text" />
<column name="module" type="varchar" size="180" notnull="notnull" unique="unique_module_part_config" utf8mb4="false" />
<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" />
</table>