This commit is contained in:
YJSoft 2015-06-12 18:48:15 +09:00
parent bf9ef78dcc
commit effc774640
29 changed files with 406 additions and 15 deletions

View file

@ -7,4 +7,5 @@
<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" />
</table>

View file

@ -5,4 +5,5 @@
<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" />
</table>

View file

@ -3,4 +3,5 @@
<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" />
</table>

View file

@ -8,5 +8,5 @@
<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="list_order" type="number" size="11" notnull="notnull" default="0" index="idx_list_order" />
</table>