I'm using Django CMS 3.1 with Django 1.7.8. I'm trying to upgrade an old project to these respective versions but I'm hitting a brick wall with a couple of my custom-written CMSPlugin-inhereting plugins.
Django won't migrate
any models.
django.db.migrations.state.InvalidBasesError: Cannot resolve bases for [..My Models..]
The models are defined as they are in the latest documentation:
from cms.models.pluginmodel import CMSPlugin
class Layout(CMSPlugin):
...
What do I need to do to let Django know how these CMSPlugin descendants are supposed to migrate? Note these models don't have any migrations. I deleted the south ones.