summaryrefslogtreecommitdiff
path: root/verify
diff options
context:
space:
mode:
authorMasaya Tojo <masaya@tojo.tokyo>2023-08-29 23:55:08 +0900
committerMasaya Tojo <masaya@tojo.tokyo>2023-10-13 02:12:33 +0900
commit5934d9831350640a99526fad6afb2ec104316fea (patch)
tree1c2b19249a089cf961e63045762a39c9cb2d5067 /verify
parentbbbdbce1f7460c1a3951cde6fcf602b7e944fae4 (diff)
Create table to manage my photos
Diffstat (limited to 'verify')
-rw-r--r--verify/photos.sql11
1 files changed, 11 insertions, 0 deletions
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;