UNIQUE
SO で見つけたすべての提案に従ったにもかかわらず、Django (1.5) で 3 つの列に MySQL インデックスを作成することができません。私のモデルは次のようになります。
class Loc(models.Model):
rand = models.IntegerField()
sectiune = models.ForeignKey(Sectiune)
numar = models.IntegerField()
pret = models.FloatField()
def __unicode__(self):
return str(self.sectiune.nume) + ': R' + str(self.rand) + ' L' + str(self.numar)
class Meta:
unique_together = (("rand","sectiune","numar"),)
何が悪いのか本当にわかりません。unique_together
外部キーで機能しないというバグ レポートを見たことがありますが、それが修正されたことも確認しました。何か助けはありますか?