rhymix/modules/member/schemas/member_devices.xml

14 lines
1 KiB
XML

<table name="member_devices">
<column name="device_srl" type="number" notnull="notnull" primary_key="primary_key" />
<column name="member_srl" type="number" notnull="notnull" index="idx_member_srl" />
<column name="device_token" type="varchar" size="191" notnull="notnull" unique="unique_device_token" />
<column name="device_token_type" type="varchar" size="20" notnull="notnull" index="idx_device_token_type" />
<column name="device_key" type="char" size="64" notnull="notnull" />
<column name="device_type" type="varchar" size="20" notnull="notnull" index="idx_device_type" />
<column name="device_version" type="varchar" size="20" notnull="notnull" />
<column name="device_model" type="varchar" size="40" notnull="notnull" />
<column name="device_description" type="varchar" size="200" />
<column name="regdate" type="date" notnull="notnull" index="idx_regdate" />
<column name="last_active_date" type="date" notnull="notnull" index="idx_last_active_date" />
<column name="ipaddress" type="varchar" size="60" notnull="notnull" />
</table>