mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-08 03:01:43 +09:00
utf8mb4 길이 제한 때문에 module_part_config 테이블에 인덱스가 추가되지 않는 문제 수정. 다른 테이블에서 module 컬럼은 이미 80자로 제한되어 있으므로 이 테이블에서만 길게 허용할 필요가 없음.
6 lines
362 B
XML
6 lines
362 B
XML
<table name="module_part_config">
|
|
<column name="module" type="varchar" size="80" 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>
|