MySQL数据库表结构设计
第 1-17 条, 共 17 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
taskid | bigint(20) | 是 | 无索引 | |||
needsid | bigint(20) | 是 | 无索引 | |||
userid | bigint(20) | 是 | 创建人 | 无索引 | ||
projectid | bigint(20) | 是 | 项目ID | 无索引 | ||
acceptid | bigint(20) | 是 | 任务接受人ID | 无索引 | ||
completeid | bigint(20) | 是 | 完成者uid | 无索引 | ||
ccid | varchar(100) | 是 | 抄送者 | 无索引 | ||
yesapi_opms_pms_projects_test_name | varchar(100) | 是 | bug名称 | 无索引 | ||
yesapi_opms_pms_projects_test_desc | text | 是 | 描述 | 无索引 | ||
yesapi_opms_pms_projects_test_level | tinyint(1) | 4 | 是 | 优先级1,2,3,4 | 无索引 | 4 |
os | varchar(20) | 是 | 操作系统 | 无索引 | ||
browser | varchar(20) | 是 | 浏览器 | 无索引 | ||
attachment | varchar(255) | 是 | 附件 | 无索引 | ||
completed | int(10) | 是 | 解决日期 | 无索引 | ||
created | int(10) | 否 | 无索引 | |||
yesapi_opms_pms_projects_test_changed | int(10) | 是 | 无索引 | |||
yesapi_opms_pms_projects_test_status | tinyint(1) | 0 | 是 | 解决方案:1设计如此,2重复Bug,3外部原因,4已解决,5无法重现,6延期处理,7不予解决 | 无索引 | 0 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:OPMS和OA管理-项目任务bug表:https://open.yesapi.cn/tablelist/yesapi_opms_pms_projects_test.html
-- 数据库大全:OPMS和OA管理-项目任务bug表
-- 来源:YesApi.cn
CREATE TABLE `yesapi_opms_pms_projects_test` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`taskid` bigint(20) NULL COMMENT '',
`needsid` bigint(20) NULL COMMENT '',
`userid` bigint(20) NULL COMMENT '创建人',
`projectid` bigint(20) NULL COMMENT '项目ID',
`acceptid` bigint(20) NULL COMMENT '任务接受人ID',
`completeid` bigint(20) NULL COMMENT '完成者uid',
`ccid` varchar(100) NULL COMMENT '抄送者',
`yesapi_opms_pms_projects_test_name` varchar(100) NULL COMMENT 'bug名称',
`yesapi_opms_pms_projects_test_desc` text NULL COMMENT '描述',
`yesapi_opms_pms_projects_test_level` tinyint(1) NULL DEFAULT '4' COMMENT '优先级1,2,3,4',
`os` varchar(20) NULL COMMENT '操作系统',
`browser` varchar(20) NULL COMMENT '浏览器',
`attachment` varchar(255) NULL COMMENT '附件',
`completed` int(10) NULL COMMENT '解决日期',
`created` int(10) NULL COMMENT '',
`yesapi_opms_pms_projects_test_changed` int(10) NULL COMMENT '',
`yesapi_opms_pms_projects_test_status` tinyint(1) NULL DEFAULT '0' COMMENT '解决方案:1设计如此,2重复Bug,3外部原因,4已解决,5无法重现,6延期处理,7不予解决',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'OPMS和OA管理-项目任务bug表';
复制后,到数据库执行,即可创建此数据库表。