25 lines
625 B
Python
25 lines
625 B
Python
# Generated by Django 5.2.7 on 2025-11-14 21:02
|
|
|
|
import django.utils.timezone
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('atlas', '0082_resource_sites_resource_subspecialty'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='resource',
|
|
name='created_date',
|
|
field=models.DateTimeField(default=django.utils.timezone.now),
|
|
),
|
|
migrations.AddField(
|
|
model_name='resource',
|
|
name='modified_date',
|
|
field=models.DateTimeField(auto_now=True),
|
|
),
|
|
]
|