+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_72crm_work_task_log:/tablelist/okayapi_72crm_work_task_log.html


-- MySQL Table okayapi_72crm_work_task_log
-- From: OkayAPI.com
CREATE TABLE `okayapi_72crm_work_task_log` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `log_id` int(11) NULL COMMENT '项目日志表',
    `user_id` bigint(20) NULL COMMENT '操作人ID',
    `content` varchar(255) NULL COMMENT '内容',
    `create_time` datetime NULL COMMENT '创建时间',
    `okayapi_72crm_work_task_log_status` int(2) NULL DEFAULT '0' COMMENT '状态 4删除',
    `task_id` int(11) NULL DEFAULT '0' COMMENT '任务ID',
    `work_id` int(11) NULL DEFAULT '0' COMMENT '项目ID',
    KEY `log_id` (`log_id`),
    KEY `user_id` (`user_id`),
    KEY `content` (`content`),
    KEY `create_time` (`create_time`),
    KEY `okayapi_72crm_work_task_log_status` (`okayapi_72crm_work_task_log_status`),
    KEY `task_id` (`task_id`),
    KEY `work_id` (`work_id`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'CRM-任务日志表';

After replication, you can go to the database to create the database table.


MySQL database table structure design

Displaying 1-7 of 7 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
log_idint(11)项目日志表
user_idbigint(20)操作人ID
contentvarchar(255)内容
create_timedatetime创建时间
okayapi_72crm_work_task_log_statusint(2)0状态 4删除0
task_idint(11)0任务ID0
work_idint(11)0项目ID0

Guess You Like

MySQL Table Design okayapi_72crm_admin_config

MySQL Table Design okayapi_72crm_admin_dept

MySQL Table Design okayapi_72crm_admin_examine

MySQL Table Design okayapi_72crm_admin_examine_log

MySQL Table Design okayapi_72crm_admin_examine_record

MySQL Table Design okayapi_72crm_admin_examine_step

MySQL Table Design okayapi_72crm_admin_field_sort

MySQL Table Design okayapi_72crm_admin_fieldv

MySQL Table Design okayapi_72crm_admin_file

MySQL Table Design okayapi_72crm_admin_menu

MySQL Table Design okayapi_72crm_admin_message

MySQL Table Design okayapi_72crm_admin_record

MySQL Table Design okayapi_72crm_admin_role

MySQL Table Design okayapi_72crm_admin_role_menu

MySQL Table Design okayapi_72crm_admin_scene

MySQL Table Design okayapi_72crm_admin_scene_default

MySQL Table Design okayapi_72crm_admin_user

MySQL Table Design okayapi_72crm_admin_user_role

MySQL Table Design okayapi_72crm_crm_achievement

MySQL Table Design okayapi_72crm_crm_action_record

TOP ↑