3

我已经尝试了所有发现:

可以在 Django 中自动删除陈旧的内容类型吗?

删除未使用的模型,过时的内容类型提示

InvalidBasesError:无法解析 [<ModelState: 'users.GroupProxy'>] 的基础

Django Wagtail CMS 迁移:无法解析 [<ModelState: 'app.CustomPage'> 的基础

Django 使用 zinnia 迁移 - InvalidBasesError: Cannot resolve bases for [<ModelState: 'zinnia.Author'>]

所以这是我的问题:我有:

  • aComicBook有一个多对多Planche
  • aPlanche有一个多对多Bande
  • aBande有一个多对多Vignette
  • ...以及更深的三个层次(这并不重要,它始终是相同的原则)

我需要在多对多表之间添加“ importance”字段,以便能够对关系进行自定义排序。因此我创建了

  • aComicBookPlanche那是带有字段的多对多表importance
  • aPlancheBande那是带有字段的多对多表importance

在我决定重命名ComicBookBook. 从现在开始我总是收到消息django.db.migrations.state.InvalidBasesError: Cannot resolve bases for...

我什至试图删除所有的表 迁移文件夹,没有任何改变......我试图评论我的应用程序 - >很好然后取消评论并且仍然:

django.db.migrations.state.InvalidBasesError:
Cannot resolve bases for
[<ModelState: 'main.TexteLongTextesThrough'>,
 <ModelState: 'main.TexteCourtTextesThrough'>,
 <ModelState: 'main.VignetteBullesThrough'>,
 <ModelState: 'main.LivrePlanchesThrough'>]

我快疯了。所以这就是我所做的:

  • 全新的应用
  • makemigrations然后migrate-> auth、admin、sessions、sites created 没问题
  • 复制/粘贴我的models.py 不带 admin.py.

makemigrations-> 完美:

Migrations for 'main':
  0001_initial.py:
    - Create model Bande
    - Create model BandeVignette
    - Create model Bulle
    - Create model ContenuCourt
    - Create model ContenuLong
    - Create model Langue
    - Create model Livre
    - Create model Personne
    - Create model Planche
    - Create model PlancheBande
    - Create model TexteCourt
    - Create model TexteLong
    - Create model Vignette
    - Add field description to planche
    - Add field planches to livre

然后migrate->完美:

Operations to perform:
  Synchronize unmigrated apps: staticfiles, messages
  Apply all migrations: sessions, admin, sites, auth, contenttypes, main
Synchronizing apps without migrations:
  Creating tables...
    Running deferred SQL...
  Installing custom SQL...
Running migrations:
  Rendering model states... DONE
  Applying main.0001_initial... OK

Process finished with exit code 0

然后复制/粘贴我的admin.pythen makemigrations-> 完美:

Migrations for 'main':
  0002_livreplanchesthrough_textecourttextesthrough_textelongtextesthrough_vignettebullesthrough.py:
    - Create proxy model LivrePlanchesThrough
    - Create proxy model TexteCourtTextesThrough
    - Create proxy model TexteLongTextesThrough
    - Create proxy model VignetteBullesThrough

Process finished with exit code 0

然后每次我尝试migrate它都会问我这个,无论我回答“是”还是“否”:

>>> migrate
Operations to perform:
  Synchronize unmigrated apps: staticfiles, messages
  Apply all migrations: sessions, admin, sites, auth, contenttypes, main
Synchronizing apps without migrations:
  Creating tables...
    Running deferred SQL...
  Installing custom SQL...
Running migrations:
  No migrations to apply.
The following content types are stale and need to be deleted:

    main | textelong_textes
    main | textecourt_textes
    main | livre_planches
    main | vignette_bulles

Any objects related to these content types by a foreign key will also
be deleted. Are you sure you want to delete these content types?
If you're unsure, answer 'no'.

    Type 'yes' to continue, or 'no' to cancel:  yes
Process finished with exit code 0

我该怎么做才能让他停止询问,问题是什么?

4

1 回答 1

1

这里有几件事:看起来您在一批迁移中创建了模型,然后在第二批迁移中创建了直通表。这是错误的,您应该同时编写和迁移主要模型的直通表。

最后一个示例中发生的情况是,当您第一次创建模型时,django 通过表格创建了自己的标准,然后您通过表格添加了自定义,因此 django 要求您删除原始(旧)的。

您对所有内容的措辞方式,看起来您将直通表的模型定义放置在admin.py? 为什么要这么做?它们应该在models.py它们“连接”的模型旁边。

此外,您不应该使用Proxy模型,并且没有实际的源代码,这很可能是您的问题的根本原因。如果您要做的只是在直通关系上有一个额外的字段,则应遵循此处的模式:https ://docs.djangoproject.com/en/1.8/topics/db/models/#extra-fields-多对多关系

于 2015-11-30T13:26:52.983 回答