Add last active date to member_devices table

This commit is contained in:
Kijin Sung 2020-10-28 01:16:23 +09:00
parent e87bd70e98
commit 5ea9d52b0c
6 changed files with 31 additions and 3 deletions

View file

@ -9,5 +9,6 @@
<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="120" notnull="notnull" />
</table>