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

MySQL建表SQL语句

数据库结构:OPMS和OA管理-项目表:https://open.yesapi.cn/tablelist/yesapi_opms_pms_projects.html


-- 数据库大全:OPMS和OA管理-项目表
-- 来源:YesApi.cn
CREATE TABLE `yesapi_opms_pms_projects` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `userid` bigint(20) NULL COMMENT '创建人',
    `yesapi_opms_pms_projects_name` varchar(100) NULL COMMENT '项目名称',
    `aliasname` varchar(100) NULL COMMENT '项目别名代号',
    `started` int(10) NULL COMMENT '开始时间',
    `ended` int(10) NULL COMMENT '结束时间',
    `yesapi_opms_pms_projects_desc` text NULL COMMENT '描述',
    `created` int(10) NULL COMMENT '添加日期',
    `yesapi_opms_pms_projects_status` tinyint(1) NULL DEFAULT '1' COMMENT '1挂起中,2延期中,3进行中,4结束',
    `projuserid` bigint(20) NULL COMMENT '项目负责人',
    `produserid` bigint(20) NULL COMMENT '产品负责人',
    `testuserid` bigint(20) NULL COMMENT '测试负责人',
    `publuserid` bigint(20) NULL COMMENT '发布负责人',
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'OPMS和OA管理-项目表';

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


MySQL数据库表结构设计

第 1-12 条, 共 12 条.
字段名称字段类型字段默认值是否允许为空字段描述索引字段数据示例
useridbigint(20)创建人无索引
yesapi_opms_pms_projects_namevarchar(100)项目名称无索引
aliasnamevarchar(100)项目别名代号无索引
startedint(10)开始时间无索引
endedint(10)结束时间无索引
yesapi_opms_pms_projects_desctext描述无索引
createdint(10)添加日期无索引
yesapi_opms_pms_projects_statustinyint(1)11挂起中,2延期中,3进行中,4结束无索引1
projuseridbigint(20)项目负责人无索引
produseridbigint(20)产品负责人无索引
testuseridbigint(20)测试负责人无索引
publuseridbigint(20)发布负责人无索引

猜你喜欢

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管理-请假审批人表



回到顶部 ↑