1

私は次のモデルを持っています。公開には、指定された結合テーブルを介して作成者とのm2mが必要です。これを実行しましたが、エラーが発生し続けます。

Error: One or more models did not validate:
publications.workshop: 'staff' is a manually-defined m2m relation through model AuthorsJoinTable, which does not have foreign keys to Staff and Workshop
publications.technicalreport: 'staff' is a manually-defined m2m relation through model          AuthorsJoinTable, which does not have foreign keys to Staff and TechnicalReport
publications.authorsjointable: 'publication' has a relation with model Publication, which has either not been installed or is abstract.
publications.authorsjointable: "unique_together" refers to staff, a field that doesn't exist. Check your syntax.

私のモデルは次のようになります。

class Publication(models.Model):
    title = models.CharField(max_length=500)
    staff = models.ManyToManyField("personnel.Staff", related_name='%(app_label)s_%(class)s_related', through='AuthorsJoinTable')
    tag = models.ManyToManyField("Tag", related_name='%(app_label)s_%(class)s_related')
    class Meta:
        abstract = True

class Workshop(Publication):
    location = models.CharField(max_length=100)
    workshop_title = models.CharField(max_length=100)
    start_date = models.DateField()
    end_date = models.DateField()
    def __unicode__(self):  
        return u'%s - %s' % (self.title, self.workshoptitle)

class TechnicalReport(Publication):
    published_date = models.DateField()

class AuthorsJoinTable(models.Model):
    author = models.ForeignKey("Author", related_name='%(app_label)s_%(class)s_from')
    publication = models.ForeignKey("Publication", related_name='%(app_label)s_%(class)s_to')
    order = models.IntegerField()
    class Meta:
        unique_together = ('staff', 'publication')

class Tag(models.Model):
    tag_name = models.CharField(max_length=100, primary_key=True)

class Author(models.Model):
    name = models.CharField(max_length=100)
    biography = models.TextField()

では、どうすればこの問題を解決できますか?

4

1 に答える 1

1

Publications.authorsjointable:「unique_together」は、存在しないフィールドであるスタッフを指します。構文を確認してください。

そのモデルにはDBにテーブルがなく、したがって参照する主キーがないため、absractモデルにForeignKeyを作成することはできません。したがって、代わりにPublication非抽象または参照を作成する必要がありますWorkshop。その後、他のエラー行も消えるはずです。

于 2012-04-07T02:51:10.063 に答える