refactor(worldtravel): remove insert_id fields from city, country, and region models; update related migration
feat(search): enhance search results display with total results count and improved layout fix(profile): update achievement levels based on adventure count; remove unused quick actions refactor(shared): delete unused shared collections route and related components feat(worldtravel): improve interactive map functionality and layout in world travel detail view
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
# Generated by Django 5.2.1 on 2025-06-14 17:32
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('worldtravel', '0015_city_insert_id_country_insert_id_region_insert_id'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RemoveField(
|
||||
model_name='city',
|
||||
name='insert_id',
|
||||
),
|
||||
migrations.RemoveField(
|
||||
model_name='country',
|
||||
name='insert_id',
|
||||
),
|
||||
migrations.RemoveField(
|
||||
model_name='region',
|
||||
name='insert_id',
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user