This repository has been archived on 2023-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
python-blog/src/articles/migrations/0020_auto_20200903_2157.py

17 lines
344 B
Python
Raw Normal View History

2020-09-03 22:00:38 +02:00
# Generated by Django 3.1 on 2020-09-03 19:57
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
("articles", "0019_article_comments_allowed"),
]
operations = [
migrations.AlterModelOptions(
2020-09-05 09:09:59 +02:00
name="comment", options={"ordering": ["created_at"]}
2020-09-03 22:00:38 +02:00
),
]