MySQL数据库表结构设计
第 1-12 条, 共 12 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
userid | bigint(20) | 是 | 无索引 | |||
destinations | varchar(50) | 否 | 目的地 | 无索引 | ||
starteds | varchar(200) | 是 | 开始日期 | 无索引 | ||
endeds | varchar(200) | 是 | 结束日期 | 无索引 | ||
days | tinyint(4) | 是 | 天数 | 无索引 | ||
reason | varchar(500) | 是 | 出差事由 | 无索引 | ||
picture | varchar(100) | 是 | 1同 | 无索引 | ||
result | tinyint(1) | 是 | 1同意2拒绝 | 无索引 | ||
yesapi_opms_pms_businesstrips_status | tinyint(1) | 1 | 是 | 1草稿2正常发布 | 无索引 | 1 |
approverids | varchar(200) | 是 | 审批人串 | 无索引 | ||
created | int(10) | 是 | 无索引 | |||
yesapi_opms_pms_businesstrips_changed | int(10) | 是 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:OPMS和OA管理-出差表:https://open.yesapi.cn/tablelist/yesapi_opms_pms_businesstrips.html
-- 数据库大全:OPMS和OA管理-出差表
-- 来源:YesApi.cn
CREATE TABLE `yesapi_opms_pms_businesstrips` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`userid` bigint(20) NULL COMMENT '',
`destinations` varchar(50) NULL COMMENT '目的地',
`starteds` varchar(200) NULL COMMENT '开始日期',
`endeds` varchar(200) NULL COMMENT '结束日期',
`days` tinyint(4) NULL COMMENT '天数',
`reason` varchar(500) NULL COMMENT '出差事由',
`picture` varchar(100) NULL COMMENT '1同',
`result` tinyint(1) NULL COMMENT '1同意2拒绝',
`yesapi_opms_pms_businesstrips_status` tinyint(1) NULL DEFAULT '1' COMMENT '1草稿2正常发布',
`approverids` varchar(200) NULL COMMENT '审批人串',
`created` int(10) NULL COMMENT '',
`yesapi_opms_pms_businesstrips_changed` int(10) NULL COMMENT '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'OPMS和OA管理-出差表';
复制后,到数据库执行,即可创建此数据库表。