MySQL数据库表结构设计
第 1-5 条, 共 5 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
agent | varchar(150) | 是 | 设备信息 | 无索引 | ||
mobile_number | varchar(20) | 是 | 无索引 | |||
yesapi_xqw_mobile_verify_code_code | varchar(10) | 是 | 验证码 | 无索引 | ||
yesapi_xqw_mobile_verify_code_type | varchar(30) | 是 | 类型,注册,密码找回等 | 无索引 | ||
expire_time | datetime | 是 | 过期时间 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:相亲-发送用户短信记录:https://open.yesapi.cn/tablelist/yesapi_xqw_mobile_verify_code.html
-- 数据库大全:相亲-发送用户短信记录
-- 来源:YesApi.cn
CREATE TABLE `yesapi_xqw_mobile_verify_code` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`agent` varchar(150) NULL COMMENT '设备信息',
`mobile_number` varchar(20) NULL COMMENT '',
`yesapi_xqw_mobile_verify_code_code` varchar(10) NULL COMMENT '验证码',
`yesapi_xqw_mobile_verify_code_type` varchar(30) NULL COMMENT '类型,注册,密码找回等',
`expire_time` datetime NULL COMMENT '过期时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '相亲-发送用户短信记录';
复制后,到数据库执行,即可创建此数据库表。