summaryrefslogtreecommitdiff
path: root/ishtar_common/migrations/0272_ishtarsiteprofile_dating_external_id.py
blob: a3c8f278a2fbf2eb7ff5215fecedcd450ced7471 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Generated by Django 4.2.19 on 2025-10-29 10:53

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('ishtar_common', '0271_import_import_immediatly'),
    ]

    operations = [
        migrations.AddField(
            model_name='ishtarsiteprofile',
            name='dating_external_id',
            field=models.TextField(default='{{parent_external_id}}-{% if reference %}{{reference}}{% else %}{{auto_id}}{% endif %}', help_text='Formula to manage dating external ID. Change this with care. With incorrect formula, the application might be unusable and import of external data can be destructive.', verbose_name='Dating external id'),
        ),
    ]