| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
 | # Generated by Django 2.2.24 on 2024-08-28 11:45
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
    dependencies = [
        ('ishtar_common', '0252_export_formats_def_head_len'),
    ]
    operations = [
        migrations.AddField(
            model_name='ishtaruser',
            name='display_forum_entries',
            field=models.BooleanField(default=True, verbose_name='Display forum entries'),
        ),
        migrations.AlterField(
            model_name='ishtarsiteprofile',
            name='no_context_button',
            field=models.ForeignKey(blank=True, help_text='If provided a button is displayed on find add page to create a "No context" find', null=True, on_delete=django.db.models.deletion.SET_NULL, to='archaeological_context_records.ContextRecord', verbose_name='Context record for no context button'),
        ),
    ]
 |