from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ("location_data", "0018_remotesensingsubdivisionoption_and_more"), ] operations = [ migrations.AddField( model_name="remotesensingclusterblock", name="center_cell_code", field=models.CharField( blank=True, db_index=True, default="", help_text="شناسه سلول مرکزی انتخاب‌شده با بهینه‌سازی 1-center در همین کلاستر.", max_length=64, ), ), migrations.AddField( model_name="remotesensingclusterblock", name="center_cell_lat", field=models.DecimalField( blank=True, db_index=True, decimal_places=6, help_text="عرض جغرافیایی سلول مرکزی کلاستر.", max_digits=9, null=True, ), ), migrations.AddField( model_name="remotesensingclusterblock", name="center_cell_lon", field=models.DecimalField( blank=True, db_index=True, decimal_places=6, help_text="طول جغرافیایی سلول مرکزی کلاستر.", max_digits=9, null=True, ), ), migrations.AddField( model_name="remotesensingsubdivisionoptionblock", name="center_cell_code", field=models.CharField( blank=True, db_index=True, default="", help_text="شناسه سلول مرکزی انتخاب‌شده با بهینه‌سازی 1-center روی اعضای همین کلاستر.", max_length=64, ), ), migrations.AddField( model_name="remotesensingsubdivisionoptionblock", name="center_cell_lat", field=models.DecimalField( blank=True, db_index=True, decimal_places=6, help_text="عرض جغرافیایی سلول مرکزی کلاستر.", max_digits=9, null=True, ), ), migrations.AddField( model_name="remotesensingsubdivisionoptionblock", name="center_cell_lon", field=models.DecimalField( blank=True, db_index=True, decimal_places=6, help_text="طول جغرافیایی سلول مرکزی کلاستر.", max_digits=9, null=True, ), ), ]