新人派对申请.sql 1.37 KB
Newer Older
chenweijian's avatar
chenweijian committed
1 2 3 4
CREATE TABLE `invite_apply` (
                             `id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT 'id',
                             `user_id` bigint NOT NULL COMMENT '发起申请者',
                             `new_user_id` bigint NOT NULL COMMENT '被邀请的人',
chenweijian's avatar
chenweijian committed
5 6 7 8
                             `platform` varchar(20) NOT NULL COMMENT '从那个平台过来',
                             `recharge_info` varchar(50) NOT NULL COMMENT '新用户在其它平台充值的标志',
                             `status` tinyint unsigned NOT NULL COMMENT '状态0.未审核1.已通过2.已拒绝',
                             `video_url` varchar(400) NOT NULL COMMENT '上传的视频url',
chenweijian's avatar
chenweijian committed
9 10 11
                             `created_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
                             `updated_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
                             PRIMARY KEY (`id`),
chenweijian's avatar
chenweijian committed
12 13 14 15
                             KEY `user_id` (`user_id`) USING BTREE,
                             KEY `new_user_id` (`new_user_id`) USING BTREE,
                             KEY `platform` (`platform`) USING BTREE,
                             KEY `status` (`status`) USING BTREE,
chenweijian's avatar
chenweijian committed
16 17
                             KEY `created_time` (`created_time`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='新人邀请申请';