initial commit

This commit is contained in:
chenjinsong
2018-09-27 16:21:05 +08:00
commit dc91c4c987
2011 changed files with 408920 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
--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;