这个问题本质上是两部分。1. 我有一种情况,我要求事物是唯一的,即 db 中的元素需要彼此唯一。
假设我们有一个模型事物(Rough PseudoCode)
Class ShoppingList( object ):
thing1_id = Column(Integer)
thing2_id = Column(Integer)
现在我需要thing1_id 和thing2_id 是唯一的,即thing1_id 和thing2_id 的集合必须是唯一的。来自 django 世界,我知道您可以在 unique_together 的 django 模型中进行元声明。但是在涡轮齿轮箱中怎么可能做到这一点。
- 另外,我如何在遗留系统上实际应用 unique_together。