summaryrefslogtreecommitdiff
path: root/ishtar_common/migrations/0246_profile_rel_engine_default_changed_to_cache_tables.py
blob: 50a6c1b891de517acde4d3009c9697406e907908 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Generated by Django 2.2.24 on 2024-05-15 17:50

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('ishtar_common', '0245_verbose_names'),
    ]

    operations = [
        migrations.AlterField(
            model_name='ishtarsiteprofile',
            name='files',
            field=models.BooleanField(default=False, verbose_name='File/administrative module'),
        ),
        migrations.AlterField(
            model_name='ishtarsiteprofile',
            name='parent_relations_engine',
            field=models.CharField(choices=[('V', 'SQL views'), ('T', 'Cache tables')], default='T', help_text='If you experience performance problems with complex relations (for instance: complex statigraphic relations), set it to "Cache tables" in order to use static cache tables. Do not forget to update theses table with the "migrate_relations_cache_tables" manage.py command.', max_length=1, verbose_name='Parent relations engine'),
        ),
    ]