edit-licheb-customer
This commit is contained in:
@@ -22,7 +22,7 @@ create table lc_receiver_customers (
|
||||
a_num tinyint(3) not null default '0' comment '到店次数',
|
||||
p_time timestamp not null default '0000-00-00 00:00:00' comment '分配时间',
|
||||
cont_time timestamp not null default '0000-00-00 00:00:00' comment '最后联系时间',
|
||||
buy_time timestamp not null default '0000-00-00 00:00:00' comment '预计购买时间',
|
||||
buy_time tinyint(3) not null default '0' comment '预计购买时间',
|
||||
user_json json default null comment '用户其它数据',
|
||||
car_json json default null comment '车信息',
|
||||
jsondata json default null comment '其他信息',
|
||||
@@ -31,6 +31,7 @@ create table lc_receiver_customers (
|
||||
u_time timestamp not null default current_timestamp on update current_timestamp,
|
||||
primary key (id)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='客户表';
|
||||
alter table lc_receiver_customers add cf_clues varchar(50) not null default '' comment '线索来源' after cf_title;
|
||||
|
||||
-- ----------------------------
|
||||
-- Title:客户操作日志表
|
||||
@@ -50,4 +51,5 @@ create table lc_receiver_customer_oplogs (
|
||||
u_time timestamp not null default current_timestamp on update current_timestamp,
|
||||
primary key (id)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='客户操作日志表';
|
||||
alter table lc_receiver_customer_oplogs add imgs json default null comment '图片' after log;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user