Shorten ipaddress field to 60 chars in most modules

This commit is contained in:
Kijin Sung 2021-01-19 21:59:33 +09:00
parent 069ac6f679
commit cc871c5474
15 changed files with 57 additions and 57 deletions

View file

@ -20,5 +20,5 @@
<column name="isvalid" type="char" size="1" default="N" index="idx_is_valid" />
<column name="cover_image" type="char" size="1" default="N" notnull="notnull" index="idx_list_order" />
<column name="regdate" type="date" index="idx_regdate" />
<column name="ipaddress" type="varchar" size="128" notnull="notnull" index="idx_ipaddress"/>
<column name="ipaddress" type="varchar" size="60" notnull="notnull" index="idx_ipaddress"/>
</table>