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

12 lines
423 B
MySQL
Raw Normal View History

2018-09-27 16:21:05 +08:00
--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;