hyapp-server/scripts/mysql/036_user_register_device_unique.sql

6 lines
252 B
SQL
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

USE hyapp_user;
-- 同一个 App 内一个非空注册设备号只能创建一个用户NULL 仍用于没有注册设备快照的历史或测试行。
ALTER TABLE users
ADD UNIQUE KEY uk_users_register_device_id (app_code, register_device_id);