22 lines
585 B
Python
22 lines
585 B
Python
|
|
from django.db import migrations, models
|
||
|
|
|
||
|
|
|
||
|
|
class Migration(migrations.Migration):
|
||
|
|
|
||
|
|
dependencies = [
|
||
|
|
("location_data", "0009_blocksubdivision"),
|
||
|
|
]
|
||
|
|
|
||
|
|
operations = [
|
||
|
|
migrations.AddField(
|
||
|
|
model_name="blocksubdivision",
|
||
|
|
name="elbow_plot",
|
||
|
|
field=models.ImageField(
|
||
|
|
blank=True,
|
||
|
|
help_text="تصویر نمودار elbow برای انتخاب تعداد بهینه خوشهها.",
|
||
|
|
null=True,
|
||
|
|
upload_to="location_data/elbow_plots/",
|
||
|
|
),
|
||
|
|
),
|
||
|
|
]
|