]> git.openstreetmap.org Git - nominatim.git/commitdiff
fix token_info migration
authorSarah Hoffmann <lonvia@denofr.de>
Thu, 13 May 2021 12:31:41 +0000 (14:31 +0200)
committerSarah Hoffmann <lonvia@denofr.de>
Thu, 13 May 2021 12:31:41 +0000 (14:31 +0200)
A bad indent meant that only one table received the new column.

nominatim/tools/migration.py

index ddf25cd91ba30307fef2c4d2ee65cae2a38596ce..de1e51013ffa00e4528a12318327343e38ccd11b 100644 (file)
@@ -185,8 +185,8 @@ def install_legacy_tokenizer(conn, config, **_):
                                            WHERE table_name = %s
                                            and column_name = 'token_info'""",
                                         (table, ))
-            if has_column == 0:
-                cur.execute('ALTER TABLE {} ADD COLUMN token_info JSONB'.format(table))
+                if has_column == 0:
+                    cur.execute('ALTER TABLE {} ADD COLUMN token_info JSONB'.format(table))
         tokenizer = tokenizer_factory.create_tokenizer(config, init_db=False,
                                                        module_name='legacy')