Improve error message on sql function

This commit is contained in:
2019-10-06 23:49:43 +02:00
parent 6d4339f2a5
commit 646c199292
4 changed files with 6 additions and 6 deletions

View File

@@ -15,7 +15,7 @@ begin
values (_created_by_id, _target_id)
on conflict (created_by_id, target_id) do nothing;
else
raise exception '% no implemented', reference::text;
raise exception '% no implemented for follow', reference::text;
end if;
end;
$$;