add price feed trigger

This commit is contained in:
Taka Goto
2018-09-12 09:43:23 -05:00
parent 0b987b3261
commit 13b19c0870
3 changed files with 37 additions and 0 deletions
@@ -0,0 +1 @@
DROP TRIGGER notify_pricefeeds ON maker.price_feeds;
@@ -0,0 +1,13 @@
CREATE OR REPLACE FUNCTION notify_pricefeed() RETURNS trigger AS $$
BEGIN
PERFORM pg_notify(
CAST('postgraphile:price_feed' AS text),
row_to_json(NEW)::text);
RETURN NEW;
END;
$$ LANGUAGE plpgsql;
CREATE TRIGGER notify_pricefeeds
AFTER INSERT ON maker.price_feeds
FOR EACH ROW
EXECUTE PROCEDURE notify_pricefeed();