19 lines
426 B
Python
19 lines
426 B
Python
# Generated by Django 2.1.15 on 2020-04-10 18:43
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('books', '0019_auto_20200408_0841'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='topic',
|
|
name='instructions',
|
|
field=models.CharField(blank=True, default=None, max_length=255, null=True),
|
|
),
|
|
]
|