member_devices 테이블 스키마 - idx를 unique로 변경하고 unique옵션에 맞게 사이즈 변경

This commit is contained in:
choyeon 2020-06-24 10:37:30 +09:00
parent 8a9ea67523
commit 525a4d839f

View file

@ -1,7 +1,7 @@
<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="200" notnull="notnull" index="idx_device_token" />
<column name="device_token" type="varchar" size="191" notnull="notnull" unique="unique_device_token" />
<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" />