Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wecloud_im_server
Overview
Overview
Details
Activity
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
hewei
wecloud_im_server
Commits
2c3e00e0
Commit
2c3e00e0
authored
Jun 10, 2022
by
南千昊
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
paas sql
parent
ec11954d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
9 deletions
+9
-9
docs/db/20220609-paas.sql
+9
-9
No files found.
docs/db/20220609-paas.sql
View file @
2c3e00e0
...
@@ -26,26 +26,26 @@ CREATE TABLE `application_products_im_config` (
...
@@ -26,26 +26,26 @@ CREATE TABLE `application_products_im_config` (
`id`
bigint
(
20
)
NOT
NULL
COMMENT
'主键id'
,
`id`
bigint
(
20
)
NOT
NULL
COMMENT
'主键id'
,
`fk_appid`
bigint
(
20
)
DEFAULT
NULL
COMMENT
'应用id'
,
`fk_appid`
bigint
(
20
)
DEFAULT
NULL
COMMENT
'应用id'
,
`group_member_limit`
int
(
4
)
DEFAULT
NULL
COMMENT
'群成员数量上限'
,
`group_member_limit`
int
(
4
)
DEFAULT
NULL
COMMENT
'群成员数量上限'
,
`group_number_limit`
bigint
(
20
)
DEFAULT
NULL
COMMENT
'群组数量上限'
,
`group_number_limit`
int
(
4
)
DEFAULT
NULL
COMMENT
'群组数量上限'
,
`user_register_limit`
bigint
(
20
)
DEFAULT
NULL
COMMENT
'用户注册数上限'
,
`user_register_limit`
int
(
4
)
DEFAULT
NULL
COMMENT
'用户注册数上限'
,
`message_keep_days`
int
(
4
)
DEFAULT
NULL
COMMENT
'消息存储时长/天'
,
`message_keep_days`
smallint
(
2
)
DEFAULT
NULL
COMMENT
'消息存储时长/天'
,
`expire_time`
datetime
DEFAULT
NULL
COMMENT
'到期时间'
,
`expire_time`
datetime
DEFAULT
NULL
COMMENT
'到期时间'
,
`month_live_user_max`
bigint
(
20
)
DEFAULT
NULL
COMMENT
'月峰值日活用户'
,
`month_live_user_max`
int
(
4
)
DEFAULT
NULL
COMMENT
'月峰值日活用户'
,
`create_by`
bigint
(
20
)
DEFAULT
NULL
COMMENT
'创建人id'
,
`create_by`
bigint
(
20
)
DEFAULT
NULL
COMMENT
'创建人id'
,
`update_by`
bigint
(
20
)
DEFAULT
NULL
COMMENT
'更新人id'
,
`update_by`
bigint
(
20
)
DEFAULT
NULL
COMMENT
'更新人id'
,
`create_time`
datetime
DEFAULT
CURRENT_TIMESTAMP
COMMENT
'创建时间'
,
`create_time`
datetime
DEFAULT
CURRENT_TIMESTAMP
COMMENT
'创建时间'
,
`update_time`
datetime
DEFAULT
NULL
ON
UPDATE
CURRENT_TIMESTAMP
COMMENT
'更新时间'
,
`update_time`
datetime
DEFAULT
NULL
ON
UPDATE
CURRENT_TIMESTAMP
COMMENT
'更新时间'
,
`is_deleted`
tinyint
(
4
)
unsigned
DEFAULT
NULL
COMMENT
'是否删除 0否 1是'
,
`is_deleted`
tinyint
(
1
)
unsigned
DEFAULT
NULL
COMMENT
'是否删除 0否 1是'
,
PRIMARY
KEY
(
`id`
)
PRIMARY
KEY
(
`id`
)
)
ENGINE
=
InnoDB
DEFAULT
CHARSET
=
utf8mb4
COLLATE
=
utf8mb4_unicode_ci
COMMENT
=
'即时通讯应用产品配置表'
;
)
ENGINE
=
InnoDB
DEFAULT
CHARSET
=
utf8mb4
COLLATE
=
utf8mb4_unicode_ci
COMMENT
=
'即时通讯应用产品配置表'
;
CREATE
TABLE
`application_products_rtc_config`
(
CREATE
TABLE
`application_products_rtc_config`
(
`id`
bigint
(
20
)
NOT
NULL
COMMENT
'主键id'
,
`id`
bigint
(
20
)
NOT
NULL
COMMENT
'主键id'
,
`fk_appid`
bigint
(
20
)
DEFAULT
NULL
COMMENT
'应用id'
,
`fk_appid`
bigint
(
20
)
DEFAULT
NULL
COMMENT
'应用id'
,
`voice_call_time_remain`
bigint
(
20
)
DEFAULT
NULL
COMMENT
'语音通话时长/分钟'
,
`voice_call_time_remain`
int
(
4
)
DEFAULT
NULL
COMMENT
'语音通话时长/分钟'
,
`video_call_time_remain`
bigint
(
20
)
DEFAULT
NULL
COMMENT
'视频通话HD时长/分钟'
,
`video_call_time_remain`
int
(
4
)
DEFAULT
NULL
COMMENT
'视频通话HD时长/分钟'
,
`voice_recording_time_remain`
bigint
(
20
)
DEFAULT
NULL
COMMENT
'音频录制时长/分钟'
,
`voice_recording_time_remain`
int
(
4
)
DEFAULT
NULL
COMMENT
'音频录制时长/分钟'
,
`video_recording_time_remain`
bigint
(
20
)
DEFAULT
NULL
COMMENT
'视频录制HD时长/分钟'
,
`video_recording_time_remain`
int
(
4
)
DEFAULT
NULL
COMMENT
'视频录制HD时长/分钟'
,
`voice_call_expire_time`
datetime
DEFAULT
NULL
COMMENT
'语音通话到期时间'
,
`voice_call_expire_time`
datetime
DEFAULT
NULL
COMMENT
'语音通话到期时间'
,
`video_call_expire_time`
datetime
DEFAULT
NULL
COMMENT
'视频通话到期时间'
,
`video_call_expire_time`
datetime
DEFAULT
NULL
COMMENT
'视频通话到期时间'
,
`voice_recording_expire_time`
datetime
DEFAULT
NULL
COMMENT
'音频录制到期时间'
,
`voice_recording_expire_time`
datetime
DEFAULT
NULL
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