以上是我在管理界面中按降序排列的表格之一id
(最近的记录在顶部)。这是我用来创建模型对象并保存的方式。
notification = Notification(from_user=from_user, to_user=to_user,
created_date=datetime.now())
notification.save()
此表的所有插入Notification
仅在各种post_save
信号处理程序中完成。会不会造成这样的矛盾?
TIME_ZONE = 'GMT'
在 django 1.3.2 中使用。我可以尝试使用auto_now_add=True
模型中的选项,但在此之前只想知道为什么会这样。