MySQL Create Table SQL
Table Structure: okayapi_opms_pms_projects_version:/tablelist/okayapi_opms_pms_projects_version.html
-- MySQL Table okayapi_opms_pms_projects_version
-- From: OkayAPI.com
CREATE TABLE `okayapi_opms_pms_projects_version` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`projectid` bigint(20) NULL COMMENT '',
`userid` bigint(20) NULL COMMENT '',
`title` varchar(100) NULL COMMENT '',
`versioned` int(10) NULL COMMENT '打包日期',
`content` text NULL COMMENT '',
`sourceurl` varchar(255) NULL COMMENT '源代码',
`downurl` varchar(255) NULL COMMENT '下载地址',
`attachment` varchar(255) NULL COMMENT '',
`created` int(10) NULL COMMENT '',
`okayapi_opms_pms_projects_version_changed` int(10) NULL COMMENT '',
KEY `projectid` (`projectid`),
KEY `userid` (`userid`),
KEY `title` (`title`),
KEY `versioned` (`versioned`),
KEY `content` (`content`),
KEY `sourceurl` (`sourceurl`),
KEY `downurl` (`downurl`),
KEY `attachment` (`attachment`),
KEY `created` (`created`),
KEY `okayapi_opms_pms_projects_version_changed` (`okayapi_opms_pms_projects_version_changed`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'OPMS和OA管理-项目版本表';
After replication, you can go to the database to create the database table.
MySQL database table structure design
Displaying 1-10 of 10 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
projectid | bigint(20) | 是 | ||||
userid | bigint(20) | 是 | ||||
title | varchar(100) | 是 | ||||
versioned | int(10) | 是 | 打包日期 | |||
content | text | 是 | ||||
sourceurl | varchar(255) | 是 | 源代码 | |||
downurl | varchar(255) | 是 | 下载地址 | |||
attachment | varchar(255) | 是 | ||||
created | int(10) | 是 | ||||
okayapi_opms_pms_projects_version_changed | int(10) | 是 |