crm.sql 1.4 KB

123456789101112131415
  1. -- `ruoyi-vue-pro`.crm_contact_business_link definition
  2. CREATE TABLE `crm_contact_business_link` (
  3. `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键',
  4. `contact_id` int(11) DEFAULT NULL COMMENT '联系人id',
  5. `business_id` int(11) DEFAULT NULL COMMENT '商机id',
  6. `creator` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '创建者',
  7. `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
  8. `updater` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '更新者',
  9. `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间',
  10. `deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除',
  11. `tenant_id` bigint(20) NOT NULL DEFAULT '0' COMMENT '租户编号',
  12. PRIMARY KEY (`id`),
  13. UNIQUE KEY `crm_contact_business_link_un` (`contact_id`,`business_id`,`deleted`,`tenant_id`)
  14. ) ENGINE=InnoDB AUTO_INCREMENT=29 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='联系人商机关联表';