forked from lix-project/hydra
Fix schema update for schedulingShares
This commit is contained in:
parent
7b9f488949
commit
8ecd84c160
|
@ -2,4 +2,5 @@ create function notifyJobsetSharesChanged() returns trigger as 'begin notify job
|
|||
create trigger JobsetSharesChanged after update on Jobsets for each row
|
||||
when (old.schedulingShares != new.schedulingShares) execute procedure notifyJobsetSharesChanged();
|
||||
|
||||
update Jobsets SET (schedulingShares) = (1) where NOT (schedulingShares > 0);
|
||||
alter table Jobsets add constraint jobsets_check check (schedulingShares > 0);
|
||||
|
|
Loading…
Reference in a new issue