Add researched Moscow seed content (22 places, RU/EN, 3 lengths)

Gorky Park (6), Red Square area (10), and Moscow-City (6) landmarks
with real historical/architectural facts, each with short/medium/long
narration text in Russian and English. Widened built_year to
varchar(128) since several entries need more than a bare year (e.g.
demolition/reconstruction ranges).

Verified end-to-end against the live backend: all 22 places load via
seed_loader, nearby search returns correctly distance-sorted results
with radius expansion in sparser areas (confirmed at Gorky Park,
900m), and place detail/search-fallback endpoints return full
bilingual content. Full pytest suite passes.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
vrubelroman 2026-07-09 18:41:16 +00:00
parent d2ab424e7e
commit ca28c93daf
5 changed files with 797 additions and 2 deletions

View file

@ -73,7 +73,7 @@ def upgrade() -> None:
),
sa.Column("address", sa.String(256), nullable=True),
sa.Column("district", sa.String(128), nullable=True),
sa.Column("built_year", sa.String(32), nullable=True),
sa.Column("built_year", sa.String(128), nullable=True),
sa.Column("architect_builder", sa.String(256), nullable=True),
sa.Column("architectural_style", sa.String(128), nullable=True),
sa.Column("notable_people", sa.Text(), nullable=True),