26 lines
728 B
Python
26 lines
728 B
Python
# Generated by Django 3.2.18 on 2023-11-29 17:29
|
|
|
|
import datetime
|
|
from django.db import migrations, models
|
|
from django.utils.timezone import utc
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('sourcePerson', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='sourceperson',
|
|
name='created_at',
|
|
field=models.DateTimeField(default=datetime.datetime(2023, 11, 29, 17, 29, 16, 298686, tzinfo=utc)),
|
|
),
|
|
migrations.AddField(
|
|
model_name='sourceperson',
|
|
name='updated_at',
|
|
field=models.DateTimeField(default=datetime.datetime(2023, 11, 29, 17, 29, 16, 298700, tzinfo=utc)),
|
|
),
|
|
]
|