market-assistant/backend/pipeline/migrations/0015_jdjobsearchrow_total_sales.py
2026-04-14 17:28:52 +08:00

19 lines
459 B
Python

# Generated manually: align JdJobSearchRow with JD_SEARCH_INTERNAL_KEYS / pc_search_export.
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("pipeline", "0014_jdjobmergedrow_total_sales"),
]
operations = [
migrations.AddField(
model_name="jdjobsearchrow",
name="total_sales",
field=models.TextField(blank=True, default=""),
),
]