diff --git a/modules/core/src/main/resources/db/upgrade/core/postgresql/postgresql_4.0.1.sql b/modules/core/src/main/resources/db/upgrade/core/postgresql/postgresql_4.0.1.sql index a9b24e37..f2e3ccd7 100644 --- a/modules/core/src/main/resources/db/upgrade/core/postgresql/postgresql_4.0.1.sql +++ b/modules/core/src/main/resources/db/upgrade/core/postgresql/postgresql_4.0.1.sql @@ -3,6 +3,9 @@ ALTER TABLE ${_prefix}sys_log ADD COLUMN execute_time decimal(19); COMMENT ON COLUMN ${_prefix}sys_log.execute_time IS '执行时间'; +-- 重命名待推送为已完成消息表 +ALTER TABLE ${_prefix}sys_msg_push_wait RENAME TO ${_prefix}sys_msg_pushed; + -- 更新模块数据库版本 update ${_prefix}sys_module set current_version = '4.0.1' where module_code = 'core'; commit; \ No newline at end of file