移除sql脚本中的更新模板版本,因为新版本不需要了。

This commit is contained in:
thinkgem
2018-04-21 22:55:51 +08:00
parent 212324badb
commit 0be8bae8af
4 changed files with 0 additions and 9 deletions

View File

@@ -4,6 +4,3 @@ ALTER TABLE [dbo].[${_prefix}sys_log] ADD [execute_time] decimal(19) NULL;
-- 重命名待推送为已完成消息表
execute sp_rename N'${_prefix}sys_msg_push_wait', N'${_prefix}sys_msg_pushed';
-- 更新模块数据库版本
update ${_prefix}sys_module set current_version = '4.0.1' where module_code = 'core';

View File

@@ -6,6 +6,4 @@ ADD COLUMN `execute_time` decimal(19,0) NULL COMMENT '执行时间' AFTER `brows
-- 重命名待推送为已完成消息表
RENAME TABLE ${_prefix}sys_msg_push_wait TO ${_prefix}sys_msg_pushed;
-- 更新模块数据库版本
update ${_prefix}sys_module set current_version = '4.0.1' where module_code = 'core';
commit;

View File

@@ -6,6 +6,4 @@ 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;

View File

@@ -6,6 +6,4 @@ 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;