From 741ff0d4881ce2a600e204f48ecd72e10a12ad9c Mon Sep 17 00:00:00 2001 From: Paul Bienkowski Date: Wed, 2 Mar 2022 19:41:06 +0100 Subject: [PATCH] Upgrade guide for 0.4.1 --- UPGRADING.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/UPGRADING.md b/UPGRADING.md index 67e9d0c..486a412 100644 --- a/UPGRADING.md +++ b/UPGRADING.md @@ -5,6 +5,23 @@ Simple migrations, e.g. for adding schema changes, are not documented explicitly. Once we implement them, their usage will be described in the [README](./README.md). +## 0.4.1 + +You can, but do not have to, reimport all tracks. This will generate a GPX file +for each track and allow the users to download those. If a GPX file has not yet +been created, the download will fail. To reimport all tracks, log in to your +PostgreSQL database (instructions are in [README.md](./README.md) for +development and [deployment/README.md](./deployment/README.md) for production) +and run: + +```sql +UPDATE track SET processing_status = 'queued'; +``` + +You can do this selectively with `WHERE` statements. + +Make sure your worker is running to process the queue. + ## 0.4.0 * Rebuild your image, this may take longer than usual, as it will compile