+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_72crm_oa_examine_relation:/tablelist/okayapi_72crm_oa_examine_relation.html


-- MySQL Table okayapi_72crm_oa_examine_relation
-- From: OkayAPI.com
CREATE TABLE `okayapi_72crm_oa_examine_relation` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `r_id` int(11) NULL COMMENT '审批关联业务表',
    `examine_id` int(11) NULL COMMENT '审批ID',
    `customer_ids` varchar(20) NULL COMMENT '客户IDs',
    `contacts_ids` varchar(20) NULL COMMENT '联系人IDs',
    `business_ids` varchar(20) NULL COMMENT '商机IDs',
    `contract_ids` varchar(20) NULL COMMENT '合同IDs',
    `okayapi_72crm_oa_examine_relation_status` int(2) NULL DEFAULT '1' COMMENT '状态1可用',
    `create_time` datetime NULL COMMENT '创建时间',
    KEY `r_id` (`r_id`),
    KEY `examine_id` (`examine_id`),
    KEY `customer_ids` (`customer_ids`),
    KEY `contacts_ids` (`contacts_ids`),
    KEY `business_ids` (`business_ids`),
    KEY `contract_ids` (`contract_ids`),
    KEY `okayapi_72crm_oa_examine_relation_status` (`okayapi_72crm_oa_examine_relation_status`),
    KEY `create_time` (`create_time`),
    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-8 of 8 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
r_idint(11)审批关联业务表
examine_idint(11)审批ID
customer_idsvarchar(20)客户IDs
contacts_idsvarchar(20)联系人IDs
business_idsvarchar(20)商机IDs
contract_idsvarchar(20)合同IDs
okayapi_72crm_oa_examine_relation_statusint(2)1状态1可用1
create_timedatetime创建时间

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 ↑