记得上下班打卡 | git大法好,push需谨慎
Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
liquidnet-bus-v1
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
董敬伟
liquidnet-bus-v1
Commits
a8339e23
Commit
a8339e23
authored
Jul 13, 2021
by
jiangxiulong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
admin_upush table
parent
65549cfe
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
32 additions
and
0 deletions
+32
-0
db_kylin_structure.sql
.../liquidnet-service-kylin-impl/docu/db_kylin_structure.sql
+32
-0
No files found.
liquidnet-bus-service/liquidnet-service-kylin/liquidnet-service-kylin-impl/docu/db_kylin_structure.sql
View file @
a8339e23
...
@@ -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
'友盟消息推送'
;
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment