Author: tchemit Date: 2014-02-27 18:25:15 +0100 (Thu, 27 Feb 2014) New Revision: 960 Url: http://codelutin.com/projects/echobase/repository/revisions/960 Log: refs #4194 fix trigger Modified: trunk/echobase-domain/src/main/resources/migration/postgis-view-2.6.sql Modified: trunk/echobase-domain/src/main/resources/migration/postgis-view-2.6.sql =================================================================== --- trunk/echobase-domain/src/main/resources/migration/postgis-view-2.6.sql 2014-02-27 16:43:28 UTC (rev 959) +++ trunk/echobase-domain/src/main/resources/migration/postgis-view-2.6.sql 2014-02-27 17:25:15 UTC (rev 960) @@ -139,8 +139,8 @@ LANGUAGE 'plpgsql'; CREATE TRIGGER echobase_refresh_views_trigger -AFTER INSERT OR UPDATE ON entitymodificationlog -EXECUTE PROCEDURE echobase_refresh_views(); +AFTER INSERT ON entitymodificationlog +FOR EACH ROW EXECUTE PROCEDURE echobase_refresh_views(); ----------------------------------------------------------------------------------------------------------------------- ---- CELL RESULT VIEW -------------------------------------------------------------------------------------------------