mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-02 16:52:16 +09:00
module_part_config 테이블에 unique key 추가
xpressengine/xe-core#2242 이미 있는 idx_module_part_config 인덱스를 대체함.
This commit is contained in:
parent
bb6dc77acd
commit
26ddd6cdc3
2 changed files with 40 additions and 7 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue