Skip to content

Commit

Permalink
fixing query to introduce scheduler_task_config
Browse files Browse the repository at this point in the history
  • Loading branch information
subhrajitroy committed Aug 2, 2011
1 parent 0f9e0e7 commit f75c8fb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions motech-server-omod/src/main/resources/sqldiff.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3373,9 +3373,9 @@
<date>July 22 2011</date>
<description>Adding configuration data for weekly tasks</description>
<sql>
insert into scheduler_task_config_property(name,value,task_config_id) values('sendNoDefaulterAndNoUpcomingCareMessage','false',4);
insert into scheduler_task_config_property(name,value,task_config_id) values('sendNoDefaulterAndNoUpcomingCareMessage','true',5);
insert into scheduler_task_config_property(name,value,task_config_id) values('sendNoDefaulterAndNoUpcomingCareMessage','true',6);
insert into scheduler_task_config_property(name,value,task_config_id) values('sendNoDefaulterAndNoUpcomingCareMessage','false',(select task_config_id from scheduler_task_config where name = 'Daily Nurse Care Messaging Task'));
insert into scheduler_task_config_property(name,value,task_config_id) values('sendNoDefaulterAndNoUpcomingCareMessage','true',(select task_config_id from scheduler_task_config where name = 'Weekly Nurse Care Messaging Task'));
insert into scheduler_task_config_property(name,value,task_config_id) values('sendNoDefaulterAndNoUpcomingCareMessage','true',(select task_config_id from scheduler_task_config where name = 'Weekly EDD Nurse Care Messaging Task'));
</sql>
</diff>

Expand Down

0 comments on commit f75c8fb

Please sign in to comment.