integer not null default 0;
returns trigger as 'begin notify builds_bumped; return null; end;' language plpgsql;
after update on Builds for each row
when (old.globalPriority != new.globalPriority) execute procedure notifyBuildBumped ;
Builds add column globalPriority