]> git.0d.be Git - django-panik-combo.git/blob - gallery/migrations/0004_gallerycell_restricted_to_unlogged.py
misc: sync migrations with combo
[django-panik-combo.git] / gallery / migrations / 0004_gallerycell_restricted_to_unlogged.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', '0003_gallerycell_title'),
11     ]
12
13     operations = [
14         migrations.AddField(
15             model_name='gallerycell',
16             name='restricted_to_unlogged',
17             field=models.BooleanField(default=False, verbose_name='Restrict to unlogged users'),
18             preserve_default=True,
19         ),
20     ]