4

当我查看包含 unique_together 语句的 models.py 的 sqlall 时,我没有注意到任何看起来像强制的东西。

在我看来,我可以想象这些知识可能有助于数据库优化查询,如下所示:

“我已经找到了包含垃圾邮件 42 和鸡蛋 91 的行,因此在搜索鸡蛋 91 时,我不再需要检查包含垃圾邮件 42 的行。”

我对这些知识可以对数据库有所帮助吗?

我没有以这种方式强制执行它是对的吗(即它仅由 ORM 强制执行)?

如果两者都是,这是一个缺陷吗?

4

1 回答 1

4

这是一个看起来应该如何的示例。假设您有模型:

class UserConnectionRequest(models.Model):
    sender = models.ForeignKey(UserProfile, related_name='sent_requests')
    recipient = models.ForeignKey(UserProfile, related_name='received_requests')
    connection_type = models.PositiveIntegerField(verbose_name=_(u'Connection type'), \
                                                  choices=UserConnectionType.choices())

    class Meta:
        unique_together = (("sender", "recipient", "connection_type"),)

运行 sqlall 它返回:

CREATE TABLE "users_userconnectionrequest" (
    "id" serial NOT NULL PRIMARY KEY,
    "sender_id" integer NOT NULL REFERENCES "users_userprofile" ("id") DEFERRABLE INITIALLY DEFERRED,
    "recipient_id" integer NOT NULL REFERENCES "users_userprofile" ("id") DEFERRABLE INITIALLY DEFERRED,
    "connection_type" integer,
    UNIQUE ("sender_id", "recipient_id", "connection_type")
)

当此模型在 DB 上正确同步时,它具有唯一约束(postgres):

约束 users_userconnectionrequest_sender_id_2eec26867fa22bfa_uniq UNIQUE(sender_id,receiver_id,connection_type),

于 2011-07-26T07:41:22.283 回答