22 lines
565 B
Python
22 lines
565 B
Python
# Generated by Django 3.2.12 on 2022-03-12 04:24
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("entries", "0012_auto_20180628_2044"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="entry",
|
|
name="kind",
|
|
field=models.CharField(
|
|
choices=[("note", "note"), ("article", "article"), ("photo", "photo")],
|
|
db_index=True,
|
|
default="note",
|
|
max_length=30,
|
|
),
|
|
),
|
|
]
|