Skip to content

Commit

Permalink
Unwanted migrations fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sbobrovsky committed May 18, 2015
1 parent 809ee0f commit b827161
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion forms_builder/forms/models.py
Expand Up @@ -53,7 +53,7 @@ class AbstractForm(models.Model):
A user-built form.
"""

sites = models.ManyToManyField(Site, editable=settings.USE_SITES,
sites = models.ManyToManyField(Site,
default=[settings.SITE_ID], related_name="%(app_label)s_%(class)s_forms")
title = models.CharField(_("Title"), max_length=50)
slug = models.SlugField(_("Slug"), editable=settings.EDITABLE_SLUGS,
Expand Down

0 comments on commit b827161

Please sign in to comment.