邀请排行榜

This commit is contained in:
buke 2024-09-03 15:38:38 +08:00
parent 146c62d4a6
commit 0eb64fdafa

View File

@ -0,0 +1,9 @@
CREATE TABLE `ufutx_share_scan_log` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`from_user_id` int(11) NOT NULL COMMENT '邀请人id',
`open_id` varchar(50) NOT NULL COMMENT 'open_id',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `from_user_id` (`from_user_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='扫码邀请记录';