summaryrefslogtreecommitdiff
path: root/verify/photos_update_timestamp.sql
blob: 92aaa8770a145075fe3e51ab5a1c5737246e446f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
-- Verify photos:photos_update_timestamp on pg

BEGIN;

DO $$
  BEGIN
    ASSERT (SELECT 1 from information_schema.triggers
             WHERE trigger_schema = 'photos'
               AND event_object_table = 'photos'
               AND trigger_name = 'update_timestamp');
  END
$$;

ROLLBACK;