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/articles/migrations/0031_auto_20210306_1449.py

21 lines
547 B
Python

# Generated by Django 3.1.5 on 2021-03-06 13:49
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("articles", "0030_tag_slug"),
]
operations = [
migrations.AlterField(
model_name="article",
name="content",
field=models.TextField(
default='!!! warning "Draft"\n This article is still a draft. It may appear by error in your feed if I click on the "publish" button too early 😊'
),
),
]