Make all module columns varchar(80)

utf8mb4 길이 제한 때문에 module_part_config 테이블에 인덱스가 추가되지 않는 문제 수정.
다른 테이블에서 module 컬럼은 이미 80자로 제한되어 있으므로 이 테이블에서만 길게 허용할 필요가 없음.
This commit is contained in:
Kijin Sung 2018-06-26 10:19:28 +09:00
parent 62895c945a
commit 6c28f5ac5a
3 changed files with 32 additions and 12 deletions

View file

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