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 = [
('ishtar_common', '0244_imports_media_link'),
]
operations = [
migrations.AlterField(
model_name='import',
name='imported_media_link',
field=models.URLField(blank=True, null=True, verbose_name='Associated media (web link to a zip file or a path)'),
),
migrations.AlterField(
model_name='importgroup',
name='imported_media_link',
field=models.URLField(blank=True, null=True, verbose_name='Associated media (web link to a zip file or a path)'),
),
]
|