Commit d6a41d78 by 翁国栋

8小时运营后台--

sql
parent 2edf8332
...@@ -59,3 +59,18 @@ CREATE TABLE ` crm_remind_rule ` ( ...@@ -59,3 +59,18 @@ CREATE TABLE ` crm_remind_rule ` (
` user_name ` varchar(50) DEFAULT NULL, ` user_name ` varchar(50) DEFAULT NULL,
PRIMARY KEY (` id `) PRIMARY KEY (` id `)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT=''提醒规则''; ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT=''提醒规则'';
CREATE TABLE `crm_list_color` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`crm_business_group` int(11) DEFAULT NULL,
`client_status` int(11) DEFAULT '0' COMMENT '0-无 1-潜在 2-意向 3-签约 4-合作中 5-已封档',
`delete_flag` tinyint(1) NOT NULL DEFAULT '0' COMMENT '逻辑删除标记0.未删除 1.删除''',
`day1` int(11) DEFAULT NULL COMMENT '天数',
`color1` varchar(50) DEFAULT NULL COMMENT '颜色',
`day2` int(11) DEFAULT NULL COMMENT '天数',
`color2` varchar(50) DEFAULT NULL COMMENT '颜色',
`day3` int(11) DEFAULT NULL COMMENT '天数',
`color3` varchar(50) DEFAULT NULL COMMENT '颜色',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8 COMMENT='跟进记录的颜色标识配置';
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment