MySQL Create Table SQL
Table Structure: okayapi_72crm_admin_examine_step:/tablelist/okayapi_72crm_admin_examine_step.html
-- MySQL Table okayapi_72crm_admin_examine_step
-- From: OkayAPI.com
CREATE TABLE `okayapi_72crm_admin_examine_step` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`step_id` bigint(20) NULL COMMENT '',
`step_type` int(1) NULL COMMENT '步骤类型1、负责人主管,2、指定用户(任意一人),3、指定用户(多人会签),4、上一级审批人主管',
`examine_id` int(11) NULL COMMENT '审批ID',
`check_user_id` varchar(500) NULL COMMENT '审批人ID (使用逗号隔开) ,1,2,',
`step_num` int(2) NULL DEFAULT '1' COMMENT '排序',
`create_time` datetime NULL COMMENT '创建时间',
`remarks` varchar(255) NULL COMMENT '备注',
KEY `step_id` (`step_id`),
KEY `step_type` (`step_type`),
KEY `examine_id` (`examine_id`),
KEY `check_user_id` (`check_user_id`),
KEY `step_num` (`step_num`),
KEY `create_time` (`create_time`),
KEY `remarks` (`remarks`),
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 Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
step_id | bigint(20) | 否 | ||||
step_type | int(1) | 是 | 步骤类型1、负责人主管,2、指定用户(任意一人),3、指定用户(多人会签),4、上一级审批人主管 | |||
examine_id | int(11) | 否 | 审批ID | |||
check_user_id | varchar(500) | 是 | 审批人ID (使用逗号隔开) ,1,2, | |||
step_num | int(2) | 1 | 是 | 排序 | 1 | |
create_time | datetime | 是 | 创建时间 | |||
remarks | varchar(255) | 是 | 备注 |