20 lines
468 B
Python
20 lines
468 B
Python
# Generated by Django 4.1.4 on 2023-10-24 21:31
|
|
|
|
from django.db import migrations, models
|
|
import django.utils.timezone
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('atlas', '0023_condition_rcr_curriculum_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='uncategoriseddicom',
|
|
name='created_date',
|
|
field=models.DateTimeField(default=django.utils.timezone.now),
|
|
),
|
|
]
|