From 47cd14e245cc865226c9931469284cb933d18fa2 Mon Sep 17 00:00:00 2001 From: Hankin Date: Wed, 12 Mar 2025 17:52:24 +0800 Subject: [PATCH] customer --- 1741768943_customer_add_decision.up.sql | 3 +++ 1741769235_table_record_add_longitude.up.sql | 3 +++ 2 files changed, 6 insertions(+) create mode 100644 1741768943_customer_add_decision.up.sql create mode 100644 1741769235_table_record_add_longitude.up.sql diff --git a/1741768943_customer_add_decision.up.sql b/1741768943_customer_add_decision.up.sql new file mode 100644 index 0000000..50a1257 --- /dev/null +++ b/1741768943_customer_add_decision.up.sql @@ -0,0 +1,3 @@ +ALTER TABLE `ufutx_s2_customer` +ADD COLUMN `decision` tinyint default 0 comment "是否决策人 0:否,1:是" after `remark`, +ADD COLUMN `principal` varchar(100) comment "负责人" after `remark` \ No newline at end of file diff --git a/1741769235_table_record_add_longitude.up.sql b/1741769235_table_record_add_longitude.up.sql new file mode 100644 index 0000000..8df59ec --- /dev/null +++ b/1741769235_table_record_add_longitude.up.sql @@ -0,0 +1,3 @@ +ALTER TABLE `ufutx_s2_customer_visit_records` +ADD COLUMN `latitude` varchar(50) comment "纬度" after `visit_address`, +ADD COLUMN `longitude` varchar(50) comment "经度" after `visit_address`