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/0013_auto_20200818_1912.py
2023-02-07 05:50:28 +00:00

21 lines
503 B
Python

# Generated by Django 3.1 on 2020-08-18 17:12
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("articles", "0012_auto_20200818_1845"),
]
operations = [
migrations.AlterField(
model_name="comment",
name="content",
field=models.TextField(
help_text="Your comment, limited to 500 characters. No formatting.",
max_length=500,
),
),
]