summaryrefslogtreecommitdiff
path: root/deploy/transactions_update_timestamp.sql
blob: e89398683befb196fbf849ecc49068d08c754b6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
-- Deploy photos:transactions_update_timestamp to pg
-- requires: schema
-- requires: transactions
-- requires: update_timestamp

BEGIN;

SET search_path to photos;

CREATE OR REPLACE TRIGGER update_timestamp
  BEFORE UPDATE ON transactions
  FOR EACH ROW
  EXECUTE FUNCTION update_timestamp();

COMMIT;