Skip to content
Snippets Groups Projects
Commit 8c2f55e8 authored by vscherbo's avatar vscherbo
Browse files

исключение для herald

parent f4d0c36b
No related branches found
No related tags found
No related merge requests found
......@@ -18,11 +18,11 @@ COMMENT ON TABLE arc_energo.topic_msg IS 'Cообщения для рассыл
-- DROP TRIGGER topic_msg_ai ON arc_energo.topic_msg;
CREATE TRIGGER topic_msg_ai AFTER
INSERT
ON
arc_energo.topic_msg FOR EACH ROW EXECUTE PROCEDURE new_topic_msg();
create trigger topic_msg_ai after
insert
on
arc_energo.topic_msg for each row
when (((new.tag)::text <> 'herald'::text)) execute procedure new_topic_msg();
-- Permissions
ALTER TABLE arc_energo.topic_msg OWNER TO arc_energo;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment