From 5934d9831350640a99526fad6afb2ec104316fea Mon Sep 17 00:00:00 2001 From: Masaya Tojo Date: Tue, 29 Aug 2023 23:55:08 +0900 Subject: Create table to manage my photos --- verify/photos.sql | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 verify/photos.sql (limited to 'verify') diff --git a/verify/photos.sql b/verify/photos.sql new file mode 100644 index 0000000..b082730 --- /dev/null +++ b/verify/photos.sql @@ -0,0 +1,11 @@ +-- Verify photos:photos on pg + +BEGIN; + +SET search_path to photos; + +SELECT id, path, is_receipt, taken_at, camera_name, created_at, updated_at + FROM photos + WHERE FALSE; + +ROLLBACK; -- cgit v1.2.3