短信验证通过记录.sql 389 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11
-- auto-generated definition
create table verify_info
(
    id          bigint auto_increment
        primary key,
    user_id     varchar(36) null comment '用户id',
    verify_code varchar(50) null comment '短信验证码',
    phone       varchar(11) null comment '电话号码',
    pass_time   datetime    null comment '验证通过时间'
)
    comment '短信验证通过记录';