diff options
| author | Masaya Tojo <masaya@tojo.tokyo> | 2023-08-29 23:55:08 +0900 | 
|---|---|---|
| committer | Masaya Tojo <masaya@tojo.tokyo> | 2023-10-13 02:12:33 +0900 | 
| commit | 5934d9831350640a99526fad6afb2ec104316fea (patch) | |
| tree | 1c2b19249a089cf961e63045762a39c9cb2d5067 /revert | |
| parent | bbbdbce1f7460c1a3951cde6fcf602b7e944fae4 (diff) | |
Create table to manage my photos
Diffstat (limited to 'revert')
| -rw-r--r-- | revert/photos.sql | 9 | 
1 files changed, 9 insertions, 0 deletions
diff --git a/revert/photos.sql b/revert/photos.sql new file mode 100644 index 0000000..7fb3606 --- /dev/null +++ b/revert/photos.sql @@ -0,0 +1,9 @@ +-- Revert photos:photos from pg + +BEGIN; + +SET search_path to photos; + +DROP TABLE photos; + +COMMIT;  | 
