mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-06 10:11:38 +09:00
member_devices 테이블 스키마 - idx를 unique로 변경하고 unique옵션에 맞게 사이즈 변경
This commit is contained in:
parent
8a9ea67523
commit
525a4d839f
1 changed files with 1 additions and 1 deletions
|
|
@ -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" />
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue