diff options
Diffstat (limited to 'verify')
| -rw-r--r-- | verify/photo.photos.sql | 15 | 
1 files changed, 15 insertions, 0 deletions
| diff --git a/verify/photo.photos.sql b/verify/photo.photos.sql new file mode 100644 index 0000000..c3e2c42 --- /dev/null +++ b/verify/photo.photos.sql @@ -0,0 +1,15 @@ +-- Verify life-archive:photo.photos on pg + +BEGIN; + +SELECT id, +       url, +       taken_at, +       place, +       note, +       created_at, +       updated_at +  FROM photo.photos + WHERE FALSE; + +ROLLBACK; | 
