exchange_trigger_purse_requests_insert.sql (1131B)
1 -- 2 -- This file is part of TALER 3 -- Copyright (C) 2024 Taler Systems SA 4 -- 5 -- TALER is free software; you can redistribute it and/or modify it under the 6 -- terms of the GNU General Public License as published by the Free Software 7 -- Foundation; either version 3, or (at your option) any later version. 8 -- 9 -- TALER is distributed in the hope that it will be useful, but WITHOUT ANY 10 -- WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR 11 -- A PARTICULAR PURPOSE. See the GNU General Public License for more details. 12 -- 13 -- You should have received a copy of the GNU General Public License along with 14 -- TALER; see the file COPYING. If not, see <http://www.gnu.org/licenses/> 15 -- 16 17 CREATE OR REPLACE FUNCTION purse_requests_insert_trigger() 18 RETURNS trigger 19 LANGUAGE plpgsql 20 AS $$ 21 BEGIN 22 INSERT INTO 23 exchange.purse_actions 24 (purse_pub 25 ,action_date) 26 VALUES 27 (NEW.purse_pub 28 ,NEW.purse_expiration); 29 RETURN NEW; 30 END $$; 31 32 COMMENT ON FUNCTION purse_requests_insert_trigger() 33 IS 'When a purse is created, insert it into the purse_action table to take action when the purse expires.'; 34 35