MySQL数据库表结构设计
第 1-10 条, 共 10 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
keywords | varchar(255) | 关键词 | 否 | 普通索引 | 关键词 | |
yesapi_zhiguo_ocenter_weixin_areply_type | tinyint(4) | 否 | 回复类型 1:文本 2:图文 3:多图文 | 无索引 | ||
image | varchar(255) | 是 | 无索引 | |||
linkurl | varchar(255) | 是 | 无索引 | |||
title | varchar(255) | 是 | 无索引 | |||
content | text | 是 | 无索引 | |||
is_attention | tinyint(1) | 2 | 否 | 是否为关注回复 1是 2否 | 无索引 | 2 |
cid | int(11) | 是 | 普通索引 | |||
is_news | tinyint(1) | 0 | 是 | 普通索引 | 0 | |
ctime | int(11) | 是 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:智果内容付费-自动回复表:https://open.yesapi.cn/tablelist/yesapi_zhiguo_ocenter_weixin_areply.html
-- 数据库大全:智果内容付费-自动回复表
-- 来源:YesApi.cn
CREATE TABLE `yesapi_zhiguo_ocenter_weixin_areply` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`keywords` varchar(255) NULL DEFAULT '关键词' COMMENT '',
`yesapi_zhiguo_ocenter_weixin_areply_type` tinyint(4) NULL COMMENT '回复类型 1:文本 2:图文 3:多图文',
`image` varchar(255) NULL COMMENT '',
`linkurl` varchar(255) NULL COMMENT '',
`title` varchar(255) NULL COMMENT '',
`content` text NULL COMMENT '',
`is_attention` tinyint(1) NULL DEFAULT '2' COMMENT '是否为关注回复 1是 2否',
`cid` int(11) NULL COMMENT '',
`is_news` tinyint(1) NULL DEFAULT '0' COMMENT '',
`ctime` int(11) NULL COMMENT '',
KEY `keywords` (`keywords`),
KEY `cid` (`cid`),
KEY `is_news` (`is_news`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '智果内容付费-自动回复表';
复制后,到数据库执行,即可创建此数据库表。
猜你喜欢
MySQL数据库设计 智果内容付费-权限组与分类的对应关系表