1
0
Fork 0
mirror of https://github.com/Findus23/acronomy.git synced 2024-09-19 15:33:45 +02:00
acronomy/acros/migrations/0038_auto_20200718_1727.py

24 lines
689 B
Python
Raw Normal View History

2020-07-18 19:28:17 +02:00
# Generated by Django 3.0.8 on 2020-07-18 17:27
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('acros', '0037_auto_20200718_1718'),
]
operations = [
migrations.AlterField(
model_name='acronym',
name='stub',
field=models.BooleanField(default=True, help_text='check if this is a minimal entry that should be extended'),
),
migrations.AlterField(
model_name='historicalacronym',
name='stub',
field=models.BooleanField(default=True, help_text='check if this is a minimal entry that should be extended'),
),
]