]> git.openstreetmap.org Git - nominatim.git/blobdiff - docs/admin/Migration.md
Fix typo.
[nominatim.git] / docs / admin / Migration.md
index 2cc0b80b3cddcb867d1ad9a2c9d4a0be9f537eb3..c291ae4903aa6919bf6df91aa45595ad198cd574 100644 (file)
@@ -4,7 +4,7 @@ This page describes database migrations necessary to update existing databases
 to newer versions of Nominatim.
 
 SQL statements should be executed from the postgres commandline. Execute
-`psql nominiatim` to enter command line mode.
+`psql nominatim` to enter command line mode.
 
 ## 3.1.0 -> 3.2.0
 
@@ -39,12 +39,18 @@ GRANT SELECT ON table country_osm_grid to "www-user";
 
 Replace the `www-user` with the user name of your website server if necessary.
 
-Finally, you can drop the now unused indexes:
+You can now drop the unused indexes:
 
 ```
 DROP INDEX idx_placex_reverse_geometry;
 ```
 
+Finally, update all SQL functions:
+
+```sh
+./utils/setup.php --create-functions --enable-diff-updates --create-partition-functions
+```
+
 ## 3.0.0 -> 3.1.0
 
 ### Postcode Table