Bug in plpgsql function : upgrade_repo

This commit is contained in:
Dany De Bontridder 2014-07-24 21:22:39 +02:00
parent f0a057f2e8
commit 6b92355496
2 changed files with 2 additions and 2 deletions

View file

@ -15,7 +15,7 @@ begin
if is_mono = 1 then
update repo_version set val=p_version;
else
update repo_version set val=p_version;
update version set val=p_version;
end if;
end;
$function$