25 lines
720 B
Python
25 lines
720 B
Python
# Generated by Django 2.2.17 on 2021-02-18 13:36
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('users', '0025_auto_20210126_1343'),
|
|
('books', '0023_auto_20200707_1501'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='chapter',
|
|
name='description_hidden_for',
|
|
field=models.ManyToManyField(related_name='hidden_chapter_descriptions', to='users.SchoolClass'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='chapter',
|
|
name='title_hidden_for',
|
|
field=models.ManyToManyField(related_name='hidden_chapter_titles', to='users.SchoolClass'),
|
|
),
|
|
]
|