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

@ -1,9 +1,9 @@
<table name="poll_item">
<column name="poll_item_srl" type="number" size="11" notnull="notnull" primary_key="primary_key" />
<column name="poll_srl" type="number" size="11" notnull="notnull" index="index_poll_srl" />
<column name="poll_index_srl" type="number" size="11" notnull="notnull" index="idx_poll_index_srl" />
<column name="upload_target_srl" type="number" size="11" notnull="notnull" index="idx_upload_target_srl" />
<column name="title" type="varchar" size="250" notnull="notnull" />
<column name="poll_count" type="number" size="11" notnull="notnull" />
<column name="add_user_srl" type="number" size="11" notnull="notnull" />
<column name="poll_item_srl" type="number" notnull="notnull" primary_key="primary_key" />
<column name="poll_srl" type="number" notnull="notnull" index="index_poll_srl" />
<column name="poll_index_srl" type="number" notnull="notnull" index="idx_poll_index_srl" />
<column name="upload_target_srl" type="number" notnull="notnull" index="idx_upload_target_srl" />
<column name="title" type="varchar" size="250" notnull="notnull" />
<column name="poll_count" type="number" notnull="notnull" />
<column name="add_user_srl" type="number" notnull="notnull" />
</table>