MySQL数据库表结构设计
第 1-8 条, 共 8 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
tempkey | char(50) | 否 | 模板编号 | 普通索引 | ||
yesapi_yshopmall_yx_wechat_template_name | char(100) | 否 | 模板名 | 无索引 | ||
content | varchar(1000) | 否 | 回复内容 | 无索引 | ||
tempid | char(100) | 是 | 模板ID | 无索引 | ||
create_time | datetime | 否 | 添加时间 | 无索引 | ||
yesapi_yshopmall_yx_wechat_template_status | tinyint(4) | 0 | 否 | 状态 | 无索引 | 0 |
is_del | tinyint(1) | 0 | 是 | 无索引 | 0 | |
yesapi_yshopmall_yx_wechat_template_type | varchar(30) | 是 | 类型:template:模板消息 subscribe:订阅消息 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:商城系统-微信模板:https://open.yesapi.cn/tablelist/yesapi_yshopmall_yx_wechat_template.html
-- 数据库大全:商城系统-微信模板
-- 来源:YesApi.cn
CREATE TABLE `yesapi_yshopmall_yx_wechat_template` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`tempkey` char(50) NULL COMMENT '模板编号',
`yesapi_yshopmall_yx_wechat_template_name` char(100) NULL COMMENT '模板名',
`content` varchar(1000) NULL COMMENT '回复内容',
`tempid` char(100) NULL COMMENT '模板ID',
`create_time` datetime NULL COMMENT '添加时间',
`yesapi_yshopmall_yx_wechat_template_status` tinyint(4) NULL DEFAULT '0' COMMENT '状态',
`is_del` tinyint(1) NULL DEFAULT '0' COMMENT '',
`yesapi_yshopmall_yx_wechat_template_type` varchar(30) NULL COMMENT '类型:template:模板消息 subscribe:订阅消息',
KEY `tempkey` (`tempkey`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '商城系统-微信模板';
复制后,到数据库执行,即可创建此数据库表。