IO-1349 Update Hasura to 2.0.9.

This commit is contained in:
Patrick Fic
2021-09-27 09:17:34 -07:00
parent dfa9592755
commit c1dfba949e
256 changed files with 6637 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
CREATE OR REPLACE FUNCTION public.update_conversation_on_message()
RETURNS trigger
LANGUAGE plpgsql
AS $function$
BEGIN
UPDATE conversations SET updated_at = now() WHERE id = NEW.conversationid;
RETURN NEW;
END;
$function$
;