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

@ -10,5 +10,5 @@
<column name="device_description" type="varchar" size="200" />
<column name="regdate" type="date" notnull="notnull" index="idx_regdate" />
<column name="last_active_date" type="date" notnull="notnull" index="idx_last_active_date" />
<column name="ipaddress" type="varchar" size="120" notnull="notnull" />
<column name="ipaddress" type="varchar" size="60" notnull="notnull" />
</table>