fnp
/
redakcja.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Show active users.
[redakcja.git]
/
src
/
documents
/
migrations
/
0011_book_woblink_id.py
1
# Generated by Django 4.1.9 on 2023-08-04 14:25
2
3
from django.db import migrations, models
4
5
6
class Migration(migrations.Migration):
7
8
dependencies = [
9
("documents", "0010_alter_book_cover"),
10
]
11
12
operations = [
13
migrations.AddField(
14
model_name="book",
15
name="woblink_id",
16
field=models.CharField(blank=True, max_length=255),
17
),
18
]