Django 上的日期时间字段存储行插入日期?
我是姜戈的新手。我正在启动一个新的应用程序,目前正在使用模型。
我需要存储该行插入的日期,当该行遭受更新时,我也需要存储该日期。
我的 models.py
from django.db import models
class Directorio(models.Model):
n_site = models.CharField(max_length=60)
url = models.CharField(max_length=200)
user_db_ins = models.CharField(max_lenght=50)
user_db_upd = models.CharField(max_lenght=50)
user_system_ins = models.CharField(max_lenght=50)
user_system_upd = models.CharField(max_lenght=50)
date_inserted =
date_last_update =
如何定义“date_inserted”和“date_last_update”?我通常使用触发器来执行此操作。
有人可以告诉我如何以 Django 方式做到这一点吗?
此致,
I'm new to Django. I'm starting a new App and I'm currently on the Models.
I need to store the date of the insertion of the line and when the line suffer from an UPDATE I need to store that date too.
My models.py
from django.db import models
class Directorio(models.Model):
n_site = models.CharField(max_length=60)
url = models.CharField(max_length=200)
user_db_ins = models.CharField(max_lenght=50)
user_db_upd = models.CharField(max_lenght=50)
user_system_ins = models.CharField(max_lenght=50)
user_system_upd = models.CharField(max_lenght=50)
date_inserted =
date_last_update =
How can I define the "date_inserted" and the "date_last_update"? I usually use a trigger to do this.
Can someone give me a clue on how to do it in the Django way?
Best Regards,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
记录在 django 此处。
Documented in django here.