convert sqlite: add index on parent_place_id

This commit is contained in:
Sarah Hoffmann 2023-10-17 10:59:47 +02:00
parent 613c8635a8
commit 84d6b481ae

View File

@ -113,6 +113,7 @@ class SqliteWriter:
await self.create_spatial_index('osmline', 'linegeo')
await self.create_spatial_index('tiger', 'linegeo')
await self.create_index('placex', 'place_id')
await self.create_index('placex', 'parent_place_id')
await self.create_index('placex', 'rank_address')
await self.create_index('addressline', 'place_id')