]> git.openstreetmap.org Git - nominatim.git/blobdiff - docs/admin/Migration.md
bdd: use python library where possible
[nominatim.git] / docs / admin / Migration.md
index 5aae344869dbeae4ec45da21429ae35668247bc3..dc94310bb5d127e1aad7de64f6d8d986ef4a0ca4 100644 (file)
@@ -8,6 +8,16 @@ SQL statements should be executed from the PostgreSQL commandline. Execute
 
 ## 3.6.0 -> master
 
+### Status table contains now time zone information
+
+The `import_status` table has been changed to include timezone information
+with the time stamp. You need to alter an existing table before running
+any replication functions with:
+
+```sql
+ALTER TABLE import_status ALTER COLUMN lastimportdate TYPE timestamp with time zone;
+```
+
 ### New location for data files
 
 External data files for Wikipedia importance, postcodes etc. are no longer
@@ -27,8 +37,8 @@ functionality of each script:
 * ./utils/setup.php: `import`, `freeze`, `refresh`
 * ./utils/update.php: `replication`, `add-data`, `index`, `refresh`
 * ./utils/specialphrases.php: `special-phrases`
-* ./utils/check_import_finished.php: `check-database`
-* ./utils/warm.php: `warm`
+* ./utils/check_import_finished.php: `admin`
+* ./utils/warm.php: `admin`
 * ./utils/export.php: `export`
 
 Try `nominatim <command> --help` for more information about each subcommand.