MySQL数据库表结构设计
第 1-18 条, 共 18 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
yesapi_eduwind_ew_group_name | char(64) | 否 | 名称 | 无索引 | ||
face | char(255) | 否 | 头像存放位置 | 无索引 | ||
userId | int(11) | 否 | 小组创建人id | 普通索引 | ||
addTime | int(11) | 0 | 否 | 添加时间 | 无索引 | 0 |
introduction | text | 是 | 课程简介 | 无索引 | ||
yesapi_eduwind_ew_group_status | char(32) | 否 | 状态,ok,applied,created | 无索引 | ||
memberNum | int(11) | 0 | 否 | 人数 | 无索引 | 0 |
viewNum | int(11) | 0 | 否 | 点击量 | 无索引 | 0 |
postableEntityId | int(11) | 是 | 发帖对象id | 唯一索引 | ||
joinType | char(32) | free | 否 | 加入方式:apply,free | 无索引 | free |
entityId | int(11) | 0 | 否 | Entity对象Id | 无索引 | 0 |
isTop | tinyint(4) | 0 | 否 | 是否推荐 | 无索引 | 0 |
categoryId | int(11) | 0 | 否 | 分类 | 无索引 | 0 |
deleted | tinyint(1) | 0 | 否 | 无索引 | 0 | |
deleteTime | int(11) | 0 | 否 | 无索引 | 0 | |
leaderTitle | char(32) | 组长 | 否 | 无索引 | 组长 | |
memberTitle | char(32) | 成员 | 否 | 无索引 | 成员 | |
adminTitle | char(32) | 管理员 | 否 | 无索引 | 管理员 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:EW在线教育-小组表:https://open.yesapi.cn/tablelist/yesapi_eduwind_ew_group.html
-- 数据库大全:EW在线教育-小组表
-- 来源:YesApi.cn
CREATE TABLE `yesapi_eduwind_ew_group` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`yesapi_eduwind_ew_group_name` char(64) NOT NULL COMMENT '名称',
`face` char(255) NOT NULL COMMENT '头像存放位置',
`userId` int(11) NOT NULL COMMENT '小组创建人id',
`addTime` int(11) NOT NULL DEFAULT '0' COMMENT '添加时间',
`introduction` text NOT NULL COMMENT '课程简介',
`yesapi_eduwind_ew_group_status` char(32) NOT NULL COMMENT '状态,ok,applied,created',
`memberNum` int(11) NOT NULL DEFAULT '0' COMMENT '人数',
`viewNum` int(11) NOT NULL DEFAULT '0' COMMENT '点击量',
`postableEntityId` int(11) NOT NULL COMMENT '发帖对象id',
`joinType` char(32) NOT NULL DEFAULT 'free' COMMENT '加入方式:apply,free',
`entityId` int(11) NOT NULL DEFAULT '0' COMMENT 'Entity对象Id',
`isTop` tinyint(4) NOT NULL DEFAULT '0' COMMENT '是否推荐',
`categoryId` int(11) NOT NULL DEFAULT '0' COMMENT '分类',
`deleted` tinyint(1) NOT NULL DEFAULT '0' COMMENT '',
`deleteTime` int(11) NOT NULL DEFAULT '0' COMMENT '',
`leaderTitle` char(32) NOT NULL DEFAULT '组长' COMMENT '',
`memberTitle` char(32) NOT NULL DEFAULT '成员' COMMENT '',
`adminTitle` char(32) NOT NULL DEFAULT '管理员' COMMENT '',
KEY `userId` (`userId`),
UNIQUE KEY `postableEntityId` (`postableEntityId`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'EW在线教育-小组表';
复制后,到数据库执行,即可创建此数据库表。