This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
nms-nmsweb/sql/sqlupdate(20130531-20130531).sql
2018-09-27 16:21:05 +08:00

12 lines
423 B
SQL
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

--option_table 表添加延时时间字段及设置值
alter table option_table add(delay_time VARCHAR2(50));
comment on column OPTION_TABLE.DELAY_TIME
is '为0时即时发为-1时不发其他数值为延时分钟数';
update option_table set DELAY_TIME='0' where TYPE_IDENTITY='emergent' and TYPE_CODE='0';
update option_table set DELAY_TIME='5' where TYPE_IDENTITY='emergent' and TYPE_CODE='1';
commit;