mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-30 16:49:58 +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,7 +1,7 @@
|
|||
<table name="member">
|
||||
<column name="member_srl" type="number" size="11" notnull="notnull" primary_key="primary_key" />
|
||||
<column name="user_id" type="varchar" size="80" notnull="notnull" unique="unique_user_id" />
|
||||
<column name="password" type="varchar" size="60" notnull="notnull" />
|
||||
<column name="password" type="varchar" size="250" notnull="notnull" />
|
||||
<column name="email_address" type="varchar" size="80" notnull="notnull" unique="unique_email_address" />
|
||||
<column name="email_id" type="varchar" size="80" notnull="notnull" />
|
||||
<column name="email_host" type="varchar" size="80" index="idx_email_host" />
|
||||
|
|
@ -19,9 +19,9 @@
|
|||
<column name="allow_message" type="char" size="1" default="Y" notnull="notnull" />
|
||||
<column name="denied" type="char" size="1" default="N" index="idx_is_denied" />
|
||||
<column name="regdate" type="date" index="idx_regdate" />
|
||||
<column name="ipaddress" type="varchar" size="128" index="idx_ipaddress" />
|
||||
<column name="ipaddress" type="varchar" size="60" index="idx_ipaddress" />
|
||||
<column name="last_login" type="date" index="idx_last_login" />
|
||||
<column name="last_login_ipaddress" type="varchar" size="128" index="idx_last_login_ipaddress" />
|
||||
<column name="last_login_ipaddress" type="varchar" size="60" index="idx_last_login_ipaddress" />
|
||||
<column name="limit_date" type="date" />
|
||||
<column name="change_password_date" type="date" />
|
||||
<column name="is_admin" type="char" size="1" default="N" index="idx_is_admin" />
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue