mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 01:01:41 +09:00
9 lines
554 B
XML
9 lines
554 B
XML
<table name="session">
|
|
<column name="session_key" type="varchar" size="128" notnull="notnull" primary_key="primary_key" />
|
|
<column name="member_srl" type="number" notnull="notnull" index="idx_session_member_srl" />
|
|
<column name="expired" type="date" index="idx_session_expired" />
|
|
<column name="val" type="bigtext" />
|
|
<column name="ipaddress" type="varchar" size="60" notnull="notnull" />
|
|
<column name="last_update" type="date" index="idx_session_update" />
|
|
<column name="cur_mid" type="varchar" size="128" index="idx_session_cur_mid" />
|
|
</table>
|