maccesch / cmsplugin-contact

Extendable contact plugin for django-cms with spam protection and i18n
BSD 2-Clause "Simplified" License
71 stars 62 forks source link

Unwanted migration with django 1.7 #79

Closed saeedsq closed 6 years ago

saeedsq commented 9 years ago

Running makemigrations creates unwanted migrations.

class Migration(migrations.Migration):

dependencies = [
    ('cmsplugin_contact', '0001_initial'),
]

operations = [
    migrations.AlterField(
        model_name='contact',
        name='form_layout',
        field=models.CharField(help_text='Choice the layout of contact form', max_length=255, verbose_name='Form Layout', choices=[(b'cmsplugin_contact.forms.ContactForm', 'default')]),
        preserve_default=True,
    ),
]
JurajKavkaAdaptiware commented 7 years ago

Upgrade Django https://code.djangoproject.com/ticket/24304