26 lines
671 B
Python
26 lines
671 B
Python
# Generated by Django 4.1.4 on 2023-10-23 08:53
|
|
|
|
from django.db import migrations, models
|
|
import django.utils.timezone
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('longs', '0008_alter_longseriesimage_series'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='longseries',
|
|
name='created_at',
|
|
field=models.DateTimeField(auto_now_add=True, default=django.utils.timezone.now),
|
|
preserve_default=False,
|
|
),
|
|
migrations.AddField(
|
|
model_name='longseries',
|
|
name='updated_at',
|
|
field=models.DateTimeField(auto_now=True),
|
|
),
|
|
]
|