diff options
Diffstat (limited to 'ishtar_common/migrations')
| -rw-r--r-- | ishtar_common/migrations/0273_importertype_gis_type.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/ishtar_common/migrations/0273_importertype_gis_type.py b/ishtar_common/migrations/0273_importertype_gis_type.py new file mode 100644 index 000000000..3438b76b9 --- /dev/null +++ b/ishtar_common/migrations/0273_importertype_gis_type.py @@ -0,0 +1,19 @@ +# Generated by Django 4.2.19 on 2025-12-15 10:25 + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('ishtar_common', '0272_ishtarsiteprofile_dating_external_id'), + ] + + operations = [ + migrations.AddField( + model_name='importertype', + name='gis_type', + field=models.ForeignKey(blank=True, help_text='For QGIS importer type. Geographic data type used for import and export.', null=True, on_delete=django.db.models.deletion.CASCADE, to='ishtar_common.geodatatype'), + ), + ] |
