forked from hans/Nominatim
fix token_info migration
A bad indent meant that only one table received the new column.
This commit is contained in:
@@ -185,8 +185,8 @@ def install_legacy_tokenizer(conn, config, **_):
|
|||||||
WHERE table_name = %s
|
WHERE table_name = %s
|
||||||
and column_name = 'token_info'""",
|
and column_name = 'token_info'""",
|
||||||
(table, ))
|
(table, ))
|
||||||
if has_column == 0:
|
if has_column == 0:
|
||||||
cur.execute('ALTER TABLE {} ADD COLUMN token_info JSONB'.format(table))
|
cur.execute('ALTER TABLE {} ADD COLUMN token_info JSONB'.format(table))
|
||||||
tokenizer = tokenizer_factory.create_tokenizer(config, init_db=False,
|
tokenizer = tokenizer_factory.create_tokenizer(config, init_db=False,
|
||||||
module_name='legacy')
|
module_name='legacy')
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user