[lots of error lines removed]
File "C:\Code\MEZ4\lib\site-packages\django\db\migrations\state.py", line 270, in render_multiple
"for more" % (new_unrendered_models, get_docs_version())
django.db.migrations.state.InvalidBasesError: Cannot resolve bases for [<ModelState: 'myapp.myPage'>]
This can happen if you are inheriting models from an app with migrations (e.g. contrib.auth)
in an app with no migrations; see https://docs.djangoproject.com/en/1.8/topics/migrations/#dependencies for more
class TrapsPage(Page, RichText):
add_toc = models.BooleanField(_("Add TOC"), default=False,
help_text=_("Include a list of child links"))
class Meta:
verbose_name = _("My Page")
verbose_name_plural = _("My Pages")
I think Django wouldn't know how to create your application's tables without the migration files. Migrations are required with every concrete model in Django 1.7 and up.
I think Django wouldn't know how to create your application's tables without the migration files. Migrations are required with every concrete model in Django 1.7 and up.
--
You received this message because you are subscribed to a topic in the Google Groups "Mezzanine Users" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/mezzanine-users/x6oxLhpK7Io/unsubscribe.
To unsubscribe from this group and all its topics, send an email to mezzanine-use...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "Mezzanine Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to mezzanine-use...@googlegroups.com.