我想将事件存储在我正在玩弄的 Web 应用程序中,我对每种方法的优缺点感到非常不确定 - 广泛使用继承或更适度的方式。
例子:
class Event(models.Model):
moment = models.DateTimeField()
class UserEvent(Event):
user = models.ForeignKey(User)
class Meta:
abstract = True
class UserRegistrationEvent(UserEvent):
pass # Nothing to add really, the name of the class indicates it's type
class UserCancellationEvent(UserEvent):
reason = models.CharField()
感觉就像我在疯狂地创建数据库表。它需要大量的连接来选择东西,并且可能会使查询复杂化。但我认为它的设计感觉很好。
使用具有更多字段的“更扁平”模型会更合理吗?
class Event(models.Model):
moment = models.DateTimeField()
user = models.ForeignKey(User, blank=True, null=True)
type = models.CharField() # 'Registration', 'Cancellation' ...
reason = models.CharField(blank=True, null=True)
感谢您对此的评论,任何人。
菲利普