# Generated by Django 3.1.13 on 2022-01-26 04:13

import datetime
from django.db import migrations, models
from django.utils.timezone import utc


class Migration(migrations.Migration):

    dependencies = [
        ('companies', '0051_auto_20220126_0406'),
    ]

    operations = [
        migrations.AlterField(
            model_name='payment',
            name='create_date',
            field=models.DateTimeField(blank=True, default=datetime.datetime(2022, 1, 26, 4, 13, 23, 540345, tzinfo=utc), null=True),
        ),
        migrations.AlterField(
            model_name='payment',
            name='modify_date',
            field=models.DateTimeField(blank=True, default=datetime.datetime(2022, 1, 26, 4, 13, 23, 540360, tzinfo=utc), null=True),
        ),
    ]
