]> git.0d.be Git - django-panik-combo.git/blob - gallery/migrations/0003_gallerycell_title.py
order auto episodes chronologically
[django-panik-combo.git] / gallery / migrations / 0003_gallerycell_title.py
1 # -*- coding: utf-8 -*-
2 from __future__ import unicode_literals
3
4 from django.db import models, migrations
5
6
7 class Migration(migrations.Migration):
8
9     dependencies = [
10         ('gallery', '0002_image_title'),
11     ]
12
13     operations = [
14         migrations.AddField(
15             model_name='gallerycell',
16             name='title',
17             field=models.CharField(max_length=50, null=True, verbose_name='Title', blank=True),
18             preserve_default=True,
19         ),
20     ]