customer team
This commit is contained in:
parent
f8251196de
commit
11cb507576
11
1782885649_create_s2_customer_team.up.sql
Normal file
11
1782885649_create_s2_customer_team.up.sql
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
CREATE TABLE `health`.`ufutx_s2_customer_team` (
|
||||||
|
`id` INT NOT NULL AUTO_INCREMENT,
|
||||||
|
`user_id` INT NOT NULL COMMENT "用户id",
|
||||||
|
`name` VARCHAR(100) NOT NULL COMMENT "姓名",
|
||||||
|
`mobile` VARCHAR(100) NOT NULL COMMENT "手机号",
|
||||||
|
`team_user_id` INT NOT NULL COMMENT "所属团队用户id",
|
||||||
|
`created_at` TIMESTAMP NULL DEFAULT NULL,
|
||||||
|
`updated_at` TIMESTAMP NULL DEFAULT NULL,
|
||||||
|
PRIMARY KEY (`id`),
|
||||||
|
UNIQUE KEY `unique_user_id` (`user_id`)
|
||||||
|
) ENGINE = InnoDB COMMENT = '客户团队';
|
||||||
Loading…
Reference in New Issue
Block a user