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-04-26 15:37
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('archaeological_files', '0114_main_image'),
]
operations = [
migrations.AlterField(
model_name='file',
name='imports',
field=models.ManyToManyField(blank=True, related_name='imported_archaeological_files_file', to='ishtar_common.Import', verbose_name='Created by imports'),
),
migrations.AlterField(
model_name='file',
name='imports_updated',
field=models.ManyToManyField(blank=True, related_name='import_updated_archaeological_files_file', to='ishtar_common.Import', verbose_name='Updated by imports'),
),
]
|