You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
Creating migrations in Django 1.7 introspects that field definition and adds the
choices
iterable of aCharField
into the migration. This causes an issue for fields like theform_selection
field in theFormBlock
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.
The text was updated successfully, but these errors were encountered: