]> git.0d.be Git - django-panik-combo.git/blob - panikombo/migrations/0005_topik.py
remove topik object
[django-panik-combo.git] / panikombo / migrations / 0005_topik.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         ('data', '0005_auto_20150226_0903'),
11         ('panikombo', '0004_newsitemautoselectioncell'),
12     ]
13
14     operations = [
15         migrations.CreateModel(
16             name='Topik',
17             fields=[
18                 ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),
19                 ('image', models.ImageField(max_length=250, null=True, verbose_name='Image', blank=True)),
20                 ('got_focus', models.DateTimeField(default=None, null=True, blank=True)),
21                 ('has_focus', models.BooleanField(default=False)),
22                 ('page', models.ForeignKey(to='data.Page')),
23             ],
24             options={
25             },
26             bases=(models.Model,),
27         ),
28     ]