user label
This commit is contained in:
parent
d3ab469489
commit
71bc49c19a
9
1779429968_create_service_user_label.up.sql
Normal file
9
1779429968_create_service_user_label.up.sql
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
CREATE TABLE `health`.`ufutx_service_user_label` (
|
||||||
|
`id` INT NOT NULL AUTO_INCREMENT,
|
||||||
|
`user_id` INT NOT NULL COMMENT "用户id",
|
||||||
|
`label` JSON NOT NULL COMMENT "标签",
|
||||||
|
`qrcode` VARCHAR(191) NOT NULL COMMENT "二维码",
|
||||||
|
`created_at` TIMESTAMP NULL DEFAULT NULL,
|
||||||
|
`updated_at` TIMESTAMP NULL DEFAULT NULL,
|
||||||
|
PRIMARY KEY (`id`)
|
||||||
|
) ENGINE = InnoDB COMMENT = '服务人员标签';
|
||||||
Loading…
Reference in New Issue
Block a user