fnp
/
wolnelektury.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
polishing map fixes
[wolnelektury.git]
/
src
/
education
/
migrations
/
0003_item_title.py
1
# Generated by Django 4.0.8 on 2022-12-20 14:12
2
3
from django.db import migrations, models
4
5
6
class Migration(migrations.Migration):
7
8
dependencies = [
9
('education', '0002_youtubetoken'),
10
]
11
12
operations = [
13
migrations.AddField(
14
model_name='item',
15
name='title',
16
field=models.CharField(blank=True, max_length=255),
17
),
18
]