tangentlabs / django-fancypages

A Content Enhancement System for Django
https://django-fancypages.readthedocs.org
BSD 3-Clause "New" or "Revised" License
34 stars 11 forks source link

Django 1.7 migrations and configurable 'choices' #53

Open roadsideseb opened 10 years ago

roadsideseb commented 10 years ago

Creating migrations in Django 1.7 introspects that field definition and adds the choices iterable of a CharField into the migration. This causes an issue for fields like the form_selection field in the FormBlock because it is configured in the settings.

We need to make the current settings available to the migration via a function call or generated constant at runtime.