mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-05 09:41:40 +09:00
Shorten ipaddress field to 60 chars in most modules
This commit is contained in:
parent
069ac6f679
commit
cc871c5474
15 changed files with 57 additions and 57 deletions
|
|
@ -1,11 +1,11 @@
|
|||
<table name="poll">
|
||||
<column name="poll_srl" type="number" size="11" notnull="notnull" primary_key="primary_key" />
|
||||
<column name="stop_date" type="date" />
|
||||
<column name="upload_target_srl" type="number" size="11" notnull="notnull" index="idx_upload_target_srl" />
|
||||
<column name="poll_count" type="number" size="11" notnull="notnull" />
|
||||
<column name="member_srl" type="number" size="11" notnull="notnull" index="idx_member_srl" />
|
||||
<column name="ipaddress" type="varchar" size="128" notnull="notnull" index="idx_ipaddress" />
|
||||
<column name="regdate" type="date" index="idx_regdate" />
|
||||
<column name="list_order" type="number" size="11" notnull="notnull" index="idx_list_order" />
|
||||
<column name="poll_type" type="number" size="11" notnull="notnull" index="idx_poll_type" />
|
||||
<column name="poll_srl" type="number" notnull="notnull" primary_key="primary_key" />
|
||||
<column name="stop_date" type="date" />
|
||||
<column name="upload_target_srl" type="number" notnull="notnull" index="idx_upload_target_srl" />
|
||||
<column name="poll_count" type="number" notnull="notnull" />
|
||||
<column name="member_srl" type="number" notnull="notnull" index="idx_member_srl" />
|
||||
<column name="ipaddress" type="varchar" size="60" notnull="notnull" index="idx_ipaddress" />
|
||||
<column name="regdate" type="date" index="idx_regdate" />
|
||||
<column name="list_order" type="number" notnull="notnull" index="idx_list_order" />
|
||||
<column name="poll_type" type="number" notnull="notnull" index="idx_poll_type" />
|
||||
</table>
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<table name="poll_log">
|
||||
<column name="poll_srl" type="number" size="11" notnull="notnull" index="idx_poll_srl" />
|
||||
<column name="member_srl" type="number" size="11" notnull="notnull" index="idx_member_srl" />
|
||||
<column name="ipaddress" type="varchar" size="128" notnull="notnull" index="idx_ipaddress" />
|
||||
<column name="regdate" type="date" index="idx_regdate" />
|
||||
<column name="poll_item" type="varchar" size="250" default="0" />
|
||||
<column name="poll_srl" type="number" notnull="notnull" index="idx_poll_srl" />
|
||||
<column name="member_srl" type="number" notnull="notnull" index="idx_member_srl" />
|
||||
<column name="ipaddress" type="varchar" size="60" notnull="notnull" index="idx_ipaddress" />
|
||||
<column name="regdate" type="date" index="idx_regdate" />
|
||||
<column name="poll_item" type="varchar" size="250" default="0" />
|
||||
</table>
|
||||
|
|
|
|||
|
|
@ -1,12 +1,12 @@
|
|||
<table name="poll_title">
|
||||
<column name="poll_srl" type="number" size="11" notnull="notnull" index="idx_poll_srl" />
|
||||
<column name="poll_index_srl" type="number" size="11" notnull="notnull" index="idx_poll_srl" />
|
||||
<column name="title" type="varchar" size="250" notnull="notnull" />
|
||||
<column name="checkcount" type="number" size="11" notnull="notnull" default="1" />
|
||||
<column name="poll_count" type="number" size="11" notnull="notnull" />
|
||||
<column name="upload_target_srl" type="number" size="11" notnull="notnull" index="idx_upload_target_srl" />
|
||||
<column name="member_srl" type="number" size="11" notnull="notnull" index="idx_member_srl" />
|
||||
<column name="ipaddress" type="varchar" size="128" notnull="notnull" index="idx_ipaddress" />
|
||||
<column name="regdate" type="date" index="idx_regdate" />
|
||||
<column name="list_order" type="number" size="11" notnull="notnull" default="0" index="idx_list_order" />
|
||||
<column name="poll_srl" type="number" notnull="notnull" index="idx_poll_srl" />
|
||||
<column name="poll_index_srl" type="number" notnull="notnull" index="idx_poll_srl" />
|
||||
<column name="title" type="varchar" size="250" notnull="notnull" />
|
||||
<column name="checkcount" type="number" notnull="notnull" default="1" />
|
||||
<column name="poll_count" type="number" notnull="notnull" />
|
||||
<column name="upload_target_srl" type="number" notnull="notnull" index="idx_upload_target_srl" />
|
||||
<column name="member_srl" type="number" notnull="notnull" index="idx_member_srl" />
|
||||
<column name="ipaddress" type="varchar" size="60" notnull="notnull" index="idx_ipaddress" />
|
||||
<column name="regdate" type="date" index="idx_regdate" />
|
||||
<column name="list_order" type="number" notnull="notnull" default="0" index="idx_list_order" />
|
||||
</table>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue