1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# Generated by Django 4.2.19 on 2026-01-20 10:15
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('ishtar_common', '0271_importerduplicatefield_concat_str'),
]
operations = [
migrations.AlterModelOptions(
name='import',
options={'permissions': (('view_own_import', 'Can view own Import'), ('add_own_import', 'Can add own Import'), ('change_own_import', 'Can change own Import'), ('delete_own_import', 'Can delete own Import'), ('view_gis_import', 'Can export to QGIS'), ('view_own_gis_import', 'Can export own to QGIS'), ('change_gis_import', 'Can import from QGIS'), ('change_own_gis_import', 'Can import own from QGIS')), 'verbose_name': 'Import - Import', 'verbose_name_plural': 'Import - Imports'},
),
migrations.AlterModelOptions(
name='importertype',
options={'ordering': ('name',), 'verbose_name': 'Importer - Type', 'verbose_name_plural': 'Importer - Types'},
),
migrations.AlterField(
model_name='documenttemplate',
name='export_format',
field=models.CharField(blank=True, choices=[('docx', 'DOCX'), ('html', 'HTML'), ('pdf', 'PDF'), ('xlsx', 'XLSX')], default='', max_length=4, verbose_name='Export format'),
),
migrations.AlterField(
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', verbose_name='GIS Type'),
),
migrations.AddField(
model_name='ishtarsiteprofile',
name='statementcondition_complete_identifier',
field=models.TextField(default='--TO BE DEFINED---', help_text='Formula to manage statement of condition complete identifier.', verbose_name='Statement of condition complete identifier'),
),
migrations.AddField(
model_name='ishtarsiteprofile',
name='statementcondition_custom_index',
field=models.TextField(blank=True, default='', help_text='Keys to be used to manage statement of condition custom index. Separate keys with a semicolon.', verbose_name='Statement of condition custom index key'),
),
]
|