From 475c39e14ad280143747af0136bb7482a8684d54 Mon Sep 17 00:00:00 2001 From: AleksandrTchaikovsky <128106125+AleksandrTchaikovsky@users.noreply.github.com> Date: Mon, 23 Jun 2025 17:52:10 -0400 Subject: [PATCH] Update postgis.mdx Added a note that clarifies that when using st postgis functions, the local database AppSchema must be adapted to receive the data like is shown in the example. --- usage/use-case-examples/postgis.mdx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/usage/use-case-examples/postgis.mdx b/usage/use-case-examples/postgis.mdx index b766c573..914366c8 100644 --- a/usage/use-case-examples/postgis.mdx +++ b/usage/use-case-examples/postgis.mdx @@ -143,3 +143,6 @@ bucket_definitions: - SELECT * FROM lists - SELECT *, st_x(location) as longitude, st_y(location) as latitude from todos ``` + + NOTE: It should be noted that for the above example to work, your AppSchema must have the corresponding `longitude` and `latitude` columns set as `TEXT` type to receive said data. +