add-clues-position

This commit is contained in:
lccsw
2021-08-26 10:07:04 +08:00
parent c047cc9bf6
commit 9edf3c65bd
5 changed files with 84 additions and 7 deletions
+4
View File
@@ -26,6 +26,10 @@ create table lc_receiver_clues (
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='线索池';
alter table lc_receiver_clues add recommend_id int(10) not null default 0 comment '推荐用id' after cf_id;
alter table lc_receiver_clues add en_time timestamp not null default '0000-00-00 00:00:00' comment '最后报名时间';
alter table lc_receiver_clues add city_id int(10) unsigned NOT NULL DEFAULT '0' COMMENT '城市id' after app_id;
alter table lc_receiver_clues add `county_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '区id' after city_id;
alter table lc_receiver_clues add `lat` double(15,12) NOT NULL DEFAULT '0.000000000000' COMMENT '经度' after county_id;
alter table lc_receiver_clues add `lng` double(15,12) NOT NULL DEFAULT '0.000000000000' COMMENT '纬度' after lat;
-- ----------------------------
-- Title:线索操作日志表