d19e2c2e8496c76c278666f2798a88a8540af2a0
[wolnelektury.git] / src / picture / migrations / 0002_remove_picture__related_info.py
1 # This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
2 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
3 #
4 from django.db import models, migrations
5
6
7 class Migration(migrations.Migration):
8
9     dependencies = [
10         ('picture', '0001_initial'),
11     ]
12
13     operations = [
14         migrations.RemoveField(
15             model_name='picture',
16             name='_related_info',
17         ),
18     ]