mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-06 18:21:39 +09:00
Fix autologin table structure and add user agent data
This commit is contained in:
parent
2af90c8e1d
commit
b0b416b823
3 changed files with 5 additions and 3 deletions
|
|
@ -1,10 +1,11 @@
|
|||
<table name="member_autologin">
|
||||
<column name="autologin_key" type="varchar" size="80" notnull="notnull" primary_key="primary_key" />
|
||||
<column name="id" type="number" primary_key="primary_key" auto_increment="auto_increment" />
|
||||
<column name="autologin_key" type="varchar" size="80" notnull="notnull" index="idx_autologin_key" />
|
||||
<column name="security_key" type="varchar" size="80" notnull="notnull" />
|
||||
<column name="member_srl" type="number" notnull="notnull" index="idx_member_srl" />
|
||||
<column name="regdate" type="date" index="idx_regdate" />
|
||||
<column name="ipaddress" type="varchar" size="80" />
|
||||
<column name="last_visit" type="date" index="idx_last_visited" />
|
||||
<column name="last_ipaddress" type="varchar" size="80" />
|
||||
<column name="user_agent" type="varchar" size="160" />
|
||||
<column name="user_agent" type="varchar" size="500" />
|
||||
</table>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue