MySQL数据库表结构设计
第 1-9 条, 共 9 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
project_id | int(11) | 是 | 无索引 | |||
issue_type | int(11) | 是 | 无索引 | |||
issue_ui_type | tinyint(2) | 是 | 无索引 | |||
field_id | int(11) | 0 | 是 | 无索引 | 0 | |
verticalposition | decimal(18,0) | 是 | 无索引 | |||
ishidden | varchar(60) | 是 | 无索引 | |||
isrequired | varchar(60) | 是 | 无索引 | |||
sequence | int(11) | 是 | 无索引 | |||
tab | int(11) | 是 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:敏捷项目-项目自定义字段布局:https://open.yesapi.cn/tablelist/yesapi_field_layout_project_custom.html
-- 数据库大全:敏捷项目-项目自定义字段布局
-- 来源:YesApi.cn
CREATE TABLE `yesapi_field_layout_project_custom` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`project_id` int(11) NULL COMMENT '',
`issue_type` int(11) NULL COMMENT '',
`issue_ui_type` tinyint(2) NULL COMMENT '',
`field_id` int(11) NULL DEFAULT '0' COMMENT '',
`verticalposition` decimal(18,0) NULL COMMENT '',
`ishidden` varchar(60) NULL COMMENT '',
`isrequired` varchar(60) NULL COMMENT '',
`sequence` int(11) NULL COMMENT '',
`tab` int(11) NULL COMMENT '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '敏捷项目-项目自定义字段布局';
复制后,到数据库执行,即可创建此数据库表。