From 9ca215c36d1f658e4d66d975801998d92ba45804 Mon Sep 17 00:00:00 2001 From: patrickzerhusen Date: Fri, 24 Apr 2026 16:55:49 +0200 Subject: [PATCH] added migration for reverse geocoding --- migrations/004_reverse_geocoding.sql | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 migrations/004_reverse_geocoding.sql diff --git a/migrations/004_reverse_geocoding.sql b/migrations/004_reverse_geocoding.sql new file mode 100644 index 0000000..662caa8 --- /dev/null +++ b/migrations/004_reverse_geocoding.sql @@ -0,0 +1,8 @@ +-- ===================================================================== +-- Migration 004: Adds Address Column for Reverse Geocoding +-- ===================================================================== + +ALTER TABLE contributions + ADD COLUMN address VARCHAR(255) DEFAULT NULL; + +COMMENT ON COLUMN contributions.address IS 'Reverse geocoded Address, stored automatically on Creation.'; \ No newline at end of file