Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
Y
yudao-cloud
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
hblj
yudao-cloud
Commits
2d63b509
提交
2d63b509
authored
2月 22, 2023
作者:
GeekXu
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix:
🐛
#I6GVAP | 更新 PostgreSQL SQL 文件
上级
01909842
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
39 行增加
和
0 行删除
+39
-0
ruoyi-vue-pro.sql
sql/postgresql/ruoyi-vue-pro.sql
+39
-0
没有找到文件。
sql/postgresql/ruoyi-vue-pro.sql
浏览文件 @
2d63b509
...
...
@@ -4883,3 +4883,42 @@ COMMENT ON COLUMN system_notify_template.updater is '更新者';
COMMENT
ON
COLUMN
system_notify_template
.
update_time
is
'更新时间'
;
COMMENT
ON
COLUMN
system_notify_template
.
deleted
is
'是否删除'
;
DROP
TABLE
IF
EXISTS
system_notify_message
;
CREATE
TABLE
system_notify_message
(
id
bigint
NOT
NULL
,
user_id
bigint
NOT
NULL
,
user_type
int2
NOT
NULL
,
template_id
bigint
NOT
NULL
,
template_code
varchar
(
64
)
NOT
NULL
,
template_nickname
varchar
(
63
)
NOT
NULL
,
template_content
varchar
(
1024
)
NOT
NULL
,
template_type
int
NOT
NULL
,
template_params
varchar
(
255
)
NOT
NULL
,
read_status
boolean
NOT
NULL
default
false
,
read_time
timestamp
with
time
zone
NULL
DEFAULT
NULL
,
creator
varchar
(
64
)
NULL
DEFAULT
''
,
create_time
timestamp
with
time
zone
NOT
NULL
DEFAULT
now
(),
updater
varchar
(
64
)
NULL
DEFAULT
''
,
update_time
timestamp
with
time
zone
NOT
NULL
DEFAULT
now
(),
deleted
int2
NOT
NULL
DEFAULT
0
,
tenant_id
bigint
NOT
NULL
DEFAULT
0
);
COMMENT
ON
TABLE
system_notify_message
is
'站内信消息表'
;
COMMENT
ON
COLUMN
system_notify_message
.
id
is
'编号'
;
COMMENT
ON
COLUMN
system_notify_message
.
user_id
is
'用户编号'
;
COMMENT
ON
COLUMN
system_notify_message
.
user_type
is
'用户类型'
;
COMMENT
ON
COLUMN
system_notify_message
.
template_id
is
'模板编号'
;
COMMENT
ON
COLUMN
system_notify_message
.
template_code
is
'模板编码'
;
COMMENT
ON
COLUMN
system_notify_message
.
template_nickname
is
'模板昵称'
;
COMMENT
ON
COLUMN
system_notify_message
.
template_content
is
'模板内容'
;
COMMENT
ON
COLUMN
system_notify_message
.
template_type
is
'模板类型'
;
COMMENT
ON
COLUMN
system_notify_message
.
template_params
is
'模板参数'
;
COMMENT
ON
COLUMN
system_notify_message
.
read_status
is
'阅读状态'
;
COMMENT
ON
COLUMN
system_notify_message
.
read_time
is
'阅读时间'
;
COMMENT
ON
COLUMN
system_notify_message
.
creator
is
'创建者'
;
COMMENT
ON
COLUMN
system_notify_message
.
create_time
is
'创建时间'
;
COMMENT
ON
COLUMN
system_notify_message
.
updater
is
'更新者'
;
COMMENT
ON
COLUMN
system_notify_message
.
update_time
is
'更新时间'
;
COMMENT
ON
COLUMN
system_notify_message
.
deleted
is
'是否删除'
;
COMMENT
ON
COLUMN
system_notify_message
.
tenant_id
is
'租户编号'
;
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论