From 37db03353a121d039a98af49aa034fb2d8f6e6ea Mon Sep 17 00:00:00 2001 From: Masaya Tojo Date: Tue, 28 Mar 2023 01:10:08 +0900 Subject: Add table for tracking photos. --- verify/photo.photos.sql | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 verify/photo.photos.sql (limited to 'verify') 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; -- cgit v1.2.3