MySQL Create Table SQL
Table Structure: okayapi_opms_pms_projects_task_log:/tablelist/okayapi_opms_pms_projects_task_log.html
-- MySQL Table okayapi_opms_pms_projects_task_log
-- From: OkayAPI.com
CREATE TABLE `okayapi_opms_pms_projects_task_log` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`taskid` bigint(20) NULL COMMENT '',
`userid` bigint(20) NULL COMMENT '操作人',
`note` text NULL COMMENT '',
`created` int(10) NULL COMMENT '',
KEY `taskid` (`taskid`),
KEY `userid` (`userid`),
KEY `note` (`note`),
KEY `created` (`created`),
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-4 of 4 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
taskid | bigint(20) | 是 | ||||
userid | bigint(20) | 是 | 操作人 | |||
note | text | 是 | ||||
created | int(10) | 是 |