combo/combo/apps/gallery/migrations/0003_gallerycell_title.py

21 lines
477 B
Python

# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [
('gallery', '0002_image_title'),
]
operations = [
migrations.AddField(
model_name='gallerycell',
name='title',
field=models.CharField(max_length=50, null=True, verbose_name='Title', blank=True),
preserve_default=True,
),
]