MySQL数据库表结构设计
第 1-9 条, 共 9 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
msg_id | int(11) | 否 | 自增 ID | 无索引 | ||
pid | int(11) | 0 | 否 | 上一条消息 ID | 无索引 | 0 |
openid | varchar(64) | 是 | openid | 无索引 | ||
mpid | int(11) | 0 | 否 | 公众号标识 | 无索引 | 0 |
yesapi_rh_mp_msg_type | varchar(32) | 是 | 消息类型 | 无索引 | ||
content | text | 是 | 消息内容 | 无索引 | ||
yesapi_rh_mp_msg_status | tinyint(1) | 0 | 否 | 0未回复,1已回复 | 无索引 | 0 |
is_reply | tinyint(1) | 0 | 否 | 1为公众号回复 | 无索引 | 0 |
create_time | int(10) | 0 | 否 | 创建时间 | 无索引 | 0 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:微信第三方平台-微信消息:https://open.yesapi.cn/tablelist/yesapi_rh_mp_msg.html
-- 数据库大全:微信第三方平台-微信消息
-- 来源:YesApi.cn
CREATE TABLE `yesapi_rh_mp_msg` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`msg_id` int(11) NOT NULL COMMENT '自增 ID',
`pid` int(11) NOT NULL DEFAULT '0' COMMENT '上一条消息 ID',
`openid` varchar(64) NOT NULL COMMENT 'openid',
`mpid` int(11) NOT NULL DEFAULT '0' COMMENT '公众号标识',
`yesapi_rh_mp_msg_type` varchar(32) NOT NULL COMMENT '消息类型',
`content` text NOT NULL COMMENT '消息内容',
`yesapi_rh_mp_msg_status` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0未回复,1已回复',
`is_reply` tinyint(1) NOT NULL DEFAULT '0' COMMENT '1为公众号回复',
`create_time` int(10) NOT NULL DEFAULT '0' COMMENT '创建时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '微信第三方平台-微信消息';
复制后,到数据库执行,即可创建此数据库表。