2024-01-01 14:52:00 +08:00

13 lines
513 B
SQL
Raw Permalink 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.

-- 校验码
-- srd_verify_code
create table srd_verify_code
(
id bigint unsigned auto_increment comment '主键'
primary key,
type tinyint unsigned not null comment '类型0:邮箱1:手机)',
contact varchar(50) not null comment '联系方式',
code varchar(12) not null comment '校验码',
expired_at timestamp not null comment '过期时间',
created_at timestamp not null comment '创建时间'
)
comment '校验码';