create dma agent user

This commit is contained in:
Hankin 2025-11-21 14:25:22 +08:00
parent ab832d3c30
commit 2b304592b9

View File

@ -0,0 +1,9 @@
CREATE TABLE `ufutx_dma_agent_user` (
`id` INT NOT NULL AUTO_INCREMENT,
`user_id` INTEGER NOT NULL COMMENT '用户id',
`level` INTEGER DEFAULT NULL COMMENT '等级 1标准代理商2高级代理商',
`form_user_id` INTEGER DEFAULT NULL COMMENT '分享人',
`created_at` TIMESTAMP NULL DEFAULT NULL,
`updated_at` TIMESTAMP NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE = InnoDB COMMENT = 'dma代理商';