+ 立即免费创建此表 返回数据库大全

MySQL建表SQL语句

数据库结构: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表';

复制后,到数据库执行,即可创建此数据库表。


MySQL数据库表结构设计

第 1-17 条, 共 17 条.
字段名称字段类型字段默认值是否允许为空字段描述索引字段数据示例
taskidbigint(20)无索引
needsidbigint(20)无索引
useridbigint(20)创建人无索引
projectidbigint(20)项目ID无索引
acceptidbigint(20)任务接受人ID无索引
completeidbigint(20)完成者uid无索引
ccidvarchar(100)抄送者无索引
yesapi_opms_pms_projects_test_namevarchar(100)bug名称无索引
yesapi_opms_pms_projects_test_desctext描述无索引
yesapi_opms_pms_projects_test_leveltinyint(1)4优先级1,2,3,4无索引4
osvarchar(20)操作系统无索引
browservarchar(20)浏览器无索引
attachmentvarchar(255)附件无索引
completedint(10)解决日期无索引
createdint(10)无索引
yesapi_opms_pms_projects_test_changedint(10)无索引
yesapi_opms_pms_projects_test_statustinyint(1)0解决方案:1设计如此,2重复Bug,3外部原因,4已解决,5无法重现,6延期处理,7不予解决无索引0

猜你喜欢

MySQL数据库设计 OPMS和OA管理-相册表

MySQL数据库设计 OPMS和OA管理-相册评论表

MySQL数据库设计 OPMS和OA管理-相册点赞表

MySQL数据库设计 OPMS和OA管理-出差表

MySQL数据库设计 OPMS和OA管理-出差审批人表

MySQL数据库设计 OPMS和OA管理-考勤打卡表

MySQL数据库设计 OPMS和OA管理-部门表

MySQL数据库设计 OPMS和OA管理-报销表

MySQL数据库设计 OPMS和OA管理-报销审批人表

MySQL数据库设计 OPMS和OA管理-外出表

MySQL数据库设计 OPMS和OA管理-外出审批人表

MySQL数据库设计 OPMS和OA管理-组成员表

MySQL数据库设计 OPMS和OA管理-组权限表

MySQL数据库设计 OPMS和OA管理-组成员

MySQL数据库设计 OPMS和OA管理-知识分享表

MySQL数据库设计 OPMS和OA管理-知识评论表

MySQL数据库设计 OPMS和OA管理-知识点赞表

MySQL数据库设计 OPMS和OA管理-知识分享分类表

MySQL数据库设计 OPMS和OA管理-请假表

MySQL数据库设计 OPMS和OA管理-请假审批人表



回到顶部 ↑