MySQL数据库表结构设计
第 1-35 条, 共 35 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
parent_id | bigint(20) | 0 | 否 | 父级id | 普通索引 | 0 |
post_type | tinyint(3) | 1 | 否 | 类型,1:文章;2:页面 | 普通索引 | 1 |
post_format | tinyint(3) | 1 | 否 | 内容格式;1:html;2:md | 无索引 | 1 |
user_id | bigint(20) | 0 | 否 | 发表者用户id | 普通索引 | 0 |
post_status | tinyint(3) | 1 | 否 | 状态;1:已发布;0:未发布; | 无索引 | 1 |
comment_status | tinyint(3) | 1 | 否 | 评论状态;1:允许;0:不允许 | 无索引 | 1 |
is_top | tinyint(3) | 0 | 否 | 是否置顶;1:置顶;0:不置顶 | 无索引 | 0 |
recommended | tinyint(3) | 0 | 否 | 是否推荐;1:推荐;0:不推荐 | 无索引 | 0 |
post_hits | bigint(20) | 0 | 否 | 查看数 | 无索引 | 0 |
post_like | bigint(20) | 0 | 否 | 点赞数 | 无索引 | 0 |
comment_count | bigint(20) | 0 | 否 | 评论数 | 无索引 | 0 |
create_time | int(10) | 0 | 否 | 创建时间 | 普通索引 | 0 |
published_time | int(10) | 0 | 否 | 发布时间 | 无索引 | 0 |
delete_time | int(10) | 0 | 否 | 删除时间 | 无索引 | 0 |
post_title | varchar(100) | 否 | post标题 | 无索引 | ||
post_subtitle | varchar(100) | 是 | 副标题 | 无索引 | ||
post_price | varchar(50) | 是 | 产品价格 | 无索引 | ||
post_start | varchar(5) | 是 | 星级 | 无索引 | ||
post_txque1 | varchar(255) | 是 | 产品特性问题1 | 无索引 | ||
post_txjd1 | text | 是 | 产品特性解答1 | 无索引 | ||
post_txque2 | varchar(255) | 是 | 产品特性问题2 | 无索引 | ||
post_txjd2 | text | 是 | 产品特性解答2 | 无索引 | ||
post_txque3 | varchar(255) | 是 | 产品特性问题3 | 无索引 | ||
post_txjd3 | text | 是 | 产品特性解答3 | 无索引 | ||
post_txque4 | varchar(255) | 是 | 产品特性问题4 | 无索引 | ||
post_txjd4 | text | 是 | 产品特性解答4 | 无索引 | ||
post_txque5 | varchar(255) | 是 | 产品特性问题5 | 无索引 | ||
post_txjd5 | text | 是 | 产品特性解答5 | 无索引 | ||
post_excerptd | varchar(255) | 是 | 产品简介(产品下方) | 无索引 | ||
post_keywords | varchar(150) | 否 | seo keywords | 无索引 | ||
post_excerpt | varchar(500) | 否 | post摘要 | 无索引 | ||
post_source | varchar(150) | 否 | 转载文章的来源 | 无索引 | ||
post_content | text | 是 | 文章内容 | 无索引 | ||
post_content_filtered | text | 是 | 处理过的文章内容 | 无索引 | ||
more | text | 是 | 扩展属性,如缩略图;格式为json | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:fie内容管理-portal应用 文章表:https://open.yesapi.cn/tablelist/yesapi_fie_portal_post.html
-- 数据库大全:fie内容管理-portal应用 文章表
-- 来源:YesApi.cn
CREATE TABLE `yesapi_fie_portal_post` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`parent_id` bigint(20) NULL DEFAULT '0' COMMENT '父级id',
`post_type` tinyint(3) NULL DEFAULT '1' COMMENT '类型,1:文章;2:页面',
`post_format` tinyint(3) NULL DEFAULT '1' COMMENT '内容格式;1:html;2:md',
`user_id` bigint(20) NULL DEFAULT '0' COMMENT '发表者用户id',
`post_status` tinyint(3) NULL DEFAULT '1' COMMENT '状态;1:已发布;0:未发布;',
`comment_status` tinyint(3) NULL DEFAULT '1' COMMENT '评论状态;1:允许;0:不允许',
`is_top` tinyint(3) NULL DEFAULT '0' COMMENT '是否置顶;1:置顶;0:不置顶',
`recommended` tinyint(3) NULL DEFAULT '0' COMMENT '是否推荐;1:推荐;0:不推荐',
`post_hits` bigint(20) NULL DEFAULT '0' COMMENT '查看数',
`post_like` bigint(20) NULL DEFAULT '0' COMMENT '点赞数',
`comment_count` bigint(20) NULL DEFAULT '0' COMMENT '评论数',
`create_time` int(10) NULL DEFAULT '0' COMMENT '创建时间',
`published_time` int(10) NULL DEFAULT '0' COMMENT '发布时间',
`delete_time` int(10) NULL DEFAULT '0' COMMENT '删除时间',
`post_title` varchar(100) NULL COMMENT 'post标题',
`post_subtitle` varchar(100) NULL COMMENT '副标题',
`post_price` varchar(50) NULL COMMENT '产品价格',
`post_start` varchar(5) NULL COMMENT '星级',
`post_txque1` varchar(255) NULL COMMENT '产品特性问题1',
`post_txjd1` text NULL COMMENT '产品特性解答1',
`post_txque2` varchar(255) NULL COMMENT '产品特性问题2',
`post_txjd2` text NULL COMMENT '产品特性解答2',
`post_txque3` varchar(255) NULL COMMENT '产品特性问题3',
`post_txjd3` text NULL COMMENT '产品特性解答3',
`post_txque4` varchar(255) NULL COMMENT '产品特性问题4',
`post_txjd4` text NULL COMMENT '产品特性解答4',
`post_txque5` varchar(255) NULL COMMENT '产品特性问题5',
`post_txjd5` text NULL COMMENT '产品特性解答5',
`post_excerptd` varchar(255) NULL COMMENT '产品简介(产品下方)',
`post_keywords` varchar(150) NULL COMMENT 'seo keywords',
`post_excerpt` varchar(500) NULL COMMENT 'post摘要',
`post_source` varchar(150) NULL COMMENT '转载文章的来源',
`post_content` text NULL COMMENT '文章内容',
`post_content_filtered` text NULL COMMENT '处理过的文章内容',
`more` text NULL COMMENT '扩展属性,如缩略图;格式为json',
KEY `parent_id` (`parent_id`),
KEY `post_type` (`post_type`),
KEY `user_id` (`user_id`),
KEY `create_time` (`create_time`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'fie内容管理-portal应用 文章表';
复制后,到数据库执行,即可创建此数据库表。
猜你喜欢
MySQL数据库设计 fie内容管理-portal应用 文章分类表
MySQL数据库设计 fie内容管理-portal应用 分类文章对应表
MySQL数据库设计 fie内容管理-portal应用 文章标签表
MySQL数据库设计 fie内容管理-portal应用 标签文章对应表