blob: 554df7309e7ae819b6f0108fe4984e9f9165558c (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
 | # Generated by Django 2.2.24 on 2023-01-30 16:58
from django.db import migrations
from ishtar_common.utils_migrations import migrate_created_field
def migrate_created(apps, __):
    app_name = "ishtar_common"
    model_names = [
        "Document",
        "Organization",
        "Person",
    ]
    migrate_created_field(apps, app_name, model_names)
class Migration(migrations.Migration):
    dependencies = [
        ('ishtar_common', '0224_auto_20230130_1838'),
    ]
    operations = [
        migrations.RunPython(migrate_created)
    ]
 |