23 lines
538 B
Python
23 lines
538 B
Python
|
# Generated by Django 5.2 on 2025-07-04 13:48
|
||
|
|
||
|
import django.utils.timezone
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
("services", "0038_add_plan_ordering_and_best"),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name="article",
|
||
|
name="article_date",
|
||
|
field=models.DateField(
|
||
|
default=django.utils.timezone.now,
|
||
|
help_text="Date of the article publishing",
|
||
|
),
|
||
|
),
|
||
|
]
|