+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_72crm_oa_event_relation:/tablelist/okayapi_72crm_oa_event_relation.html


-- MySQL Table okayapi_72crm_oa_event_relation
-- From: OkayAPI.com
CREATE TABLE `okayapi_72crm_oa_event_relation` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `eventrelation_id` int(11) NOT NULL COMMENT '日程关联业务表',
    `event_id` int(11) NOT NULL COMMENT '日程ID',
    `customer_ids` varchar(200) NOT NULL COMMENT '客户IDs',
    `contacts_ids` varchar(200) NOT NULL COMMENT '联系人IDs',
    `business_ids` varchar(200) NOT NULL COMMENT '商机IDs',
    `contract_ids` varchar(200) NOT NULL COMMENT '合同IDs',
    `okayapi_72crm_oa_event_relation_status` int(2) NOT NULL DEFAULT '0' COMMENT '状态1可用',
    `create_time` datetime NOT NULL COMMENT '创建时间',
    KEY `eventrelation_id` (`eventrelation_id`),
    KEY `event_id` (`event_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_event_relation_status` (`okayapi_72crm_oa_event_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
eventrelation_idint(11)日程关联业务表
event_idint(11)日程ID
customer_idsvarchar(200)客户IDs
contacts_idsvarchar(200)联系人IDs
business_idsvarchar(200)商机IDs
contract_idsvarchar(200)合同IDs
okayapi_72crm_oa_event_relation_statusint(2)0状态1可用0
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 ↑