mirror of
https://github.com/primedigitaltech/market-assistant.git
synced 2026-07-22 08:01:34 +08:00
报告正文、简报、策略草稿、API 说明与 LLM 提示中避免「统计口径」等行话;列表 CSV 表头「销量口径」改为「销量展示」;日报目录未改。 Made-with: Cursor
19 lines
456 B
Python
19 lines
456 B
Python
# Generated manually for keyword_pipeline_merged.csv column 销量展示(totalSales).
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("pipeline", "0013_rebuild_pipelinejobcheckpoint"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="jdjobmergedrow",
|
|
name="total_sales",
|
|
field=models.TextField(blank=True, default=""),
|
|
),
|
|
]
|