记得上下班打卡 | git大法好,push需谨慎

Commit a8339e23 authored by jiangxiulong's avatar jiangxiulong

admin_upush table

parent 65549cfe
...@@ -980,3 +980,35 @@ create table platform_oss_files ...@@ -980,3 +980,35 @@ create table platform_oss_files
) ENGINE = InnoDB ) ENGINE = InnoDB
DEFAULT CHARSET utf8mb4 DEFAULT CHARSET utf8mb4
COLLATE utf8mb4_unicode_ci COMMENT '阿里云OSS上传记录'; COLLATE utf8mb4_unicode_ci COMMENT '阿里云OSS上传记录';
CREATE TABLE `admin_upush`
(
`mid` int(11) unsigned NOT NULL AUTO_INCREMENT,
`upush_id` varchar(255) NOT NULL DEFAULT 0 COMMENT 'upush_id',
`push_range` tinyint NOT NULL DEFAULT 0 COMMENT '推送设备all ios android',
`push_type` tinyint NOT NULL DEFAULT 0 COMMENT '推送类型 unicast broadcast',
`mobile` varchar(11) NOT NULL DEFAULT '' COMMENT '推送号码',
`push_title` varchar(255) NOT NULL DEFAULT '' COMMENT '推送标题',
`push_content` varchar(255) NOT NULL DEFAULT '' COMMENT '推送内容',
`img` varchar(500) NOT NULL DEFAULT '' COMMENT '封面图',
`jump_type` tinyint NOT NULL DEFAULT 0 COMMENT '跳转类型 go_app,go_channel,go_super_channel,normal_play,normal_live,ugc_play,ugc_live,ad_link,promotion,ticket,tour,goods,area',
`jump_value` varchar(255) NOT NULL DEFAULT '' COMMENT '跳转值',
`jump_content` varchar(500) NOT NULL DEFAULT '' COMMENT '跳转对应的值',
`push_time` timestamp NULL DEFAULT NULL COMMENT '推送时间',
`jump_begin_time` timestamp NULL DEFAULT NULL COMMENT '直播开始时间',
`pushed_by` varchar(255) NOT NULL DEFAULT '' COMMENT '推送者ID',
`pushed_name` varchar(255) NOT NULL DEFAULT '' COMMENT '推送者姓名',
`task_id` varchar(255) NOT NULL DEFAULT '' COMMENT '推送任务ID',
`is_push` int NOT NULL DEFAULT 0 COMMENT '是否发送推送消息,2不发送 1发送推送消息',
`send_type` int NOT NULL DEFAULT 0 COMMENT '发送类型,2立即发送 1定时发送',
`message_type` int NOT NULL DEFAULT 0 COMMENT '消息类型,2系统消息 1会员消息',
`specify_type` int NOT NULL DEFAULT 0 COMMENT '用户类型,2对应全部用户 1对应指定手机号',
`message_show_type` int NOT NULL DEFAULT 0 COMMENT '消息展示类型,2普通文本,1图文排版',
`show_content` text,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
KEY `admin_upush_id_index` (`upush_id`),
PRIMARY KEY (`mid`)
) ENGINE = InnoDB
DEFAULT CHARSET utf8mb4
COLLATE utf8mb4_unicode_ci COMMENT '友盟消息推送';
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment