]> git.0d.be Git - django-panik-combo.git/blobdiff - panikombo/migrations/0005_topik.py
remove topik object
[django-panik-combo.git] / panikombo / migrations / 0005_topik.py
index 226df962f7ebfa7567043bd6d2d659c9ffa2d262..d2e339bfa71b560f3f6fa2a7ff4484295669e264 100644 (file)
@@ -2,7 +2,6 @@
 from __future__ import unicode_literals
 
 from django.db import models, migrations
-import panikombo.models
 
 
 class Migration(migrations.Migration):
@@ -17,7 +16,7 @@ class Migration(migrations.Migration):
             name='Topik',
             fields=[
                 ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),
-                ('image', models.ImageField(max_length=250, upload_to=panikombo.models.get_topik_image_path, null=True, verbose_name='Image', blank=True)),
+                ('image', models.ImageField(max_length=250, null=True, verbose_name='Image', blank=True)),
                 ('got_focus', models.DateTimeField(default=None, null=True, blank=True)),
                 ('has_focus', models.BooleanField(default=False)),
                 ('page', models.ForeignKey(to='data.Page')),