From b60ac1ebffda01323302baa8ed931fc80694724f Mon Sep 17 00:00:00 2001 From: tian <156691306@qq.com> Date: Wed, 22 Jan 2025 15:11:48 +0800 Subject: [PATCH] Create 1737529897_create_ufutx_s2_customer.up.sql --- 1737529897_create_ufutx_s2_customer.up.sql | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 1737529897_create_ufutx_s2_customer.up.sql diff --git a/1737529897_create_ufutx_s2_customer.up.sql b/1737529897_create_ufutx_s2_customer.up.sql new file mode 100644 index 0000000..4452043 --- /dev/null +++ b/1737529897_create_ufutx_s2_customer.up.sql @@ -0,0 +1,11 @@ +CREATE TABLE `health`.`ufutx_s2_customer` ( + `id` BIGINT NOT NULL AUTO_INCREMENT , + `user_id` BIGINT NOT NULL , + `customer_name` VARCHAR(2048) NOT NULL COMMENT '客户名称' , + `customer_type` TINYINT NOT NULL DEFAULT '2' COMMENT '1=B端政府, 2=B端企业, 3=B端医院, 4=B端供应商, 101=C端合伙人, 102=C端内部合作伙伴' , + `contacts_name` INT NOT NULL COMMENT '客户联系人名称' , + `contacts_mobile` VARCHAR(128) NOT NULL COMMENT '客户联系人电话' , + `created_at` TIMESTAMP null default null , + `updated_at` TIMESTAMP null default null , + PRIMARY KEY (`id`) +) ENGINE = InnoDB COMMENT = '客户'; \ No newline at end of file