23 lines
569 B
Python
23 lines
569 B
Python
|
# Generated by Django 4.0.3 on 2022-06-11 10:38
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
import django.utils.timezone
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
("accounts", "0004_accountconfirmchallenge_public_ref_and_more"),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name="accountconfirmchallenge",
|
||
|
name="created_at",
|
||
|
field=models.DateTimeField(
|
||
|
auto_now_add=True, default=django.utils.timezone.now
|
||
|
),
|
||
|
preserve_default=False,
|
||
|
),
|
||
|
]
|