fnp
/
wolnelektury.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
edit buttons
[wolnelektury.git]
/
src
/
catalogue
/
migrations
/
0036_book_toc.py
1
# Generated by Django 2.2.25 on 2022-03-10 14:18
2
3
from django.db import migrations, models
4
5
6
class Migration(migrations.Migration):
7
8
dependencies = [
9
('catalogue', '0035_bookmedia_duration'),
10
]
11
12
operations = [
13
migrations.AddField(
14
model_name='book',
15
name='toc',
16
field=models.TextField(blank=True, verbose_name='toc'),
17
),
18
]