diff --git a/1763705747_create_dma_agent_users.up.sql b/1763705747_create_dma_agent_users.up.sql new file mode 100644 index 0000000..a92804b --- /dev/null +++ b/1763705747_create_dma_agent_users.up.sql @@ -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代理商'; \ No newline at end of file