Django 上的日期时间字段存储行插入日期?

发布于 2024-10-25 20:34:55 字数 677 浏览 0 评论 0原文

我是姜戈的新手。我正在启动一个新的应用程序,目前正在使用模型。

我需要存储该行插入的日期,当该行遭受更新时,我也需要存储该日期。

我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

愿得七秒忆 2024-11-01 20:34:56

记录在 django 此处

date_inserted    = models.DateTimeField(auto_now_add=True)
date_last_update = models.DateTimeField(auto_now=True)

Documented in django here.

date_inserted    = models.DateTimeField(auto_now_add=True)
date_last_update = models.DateTimeField(auto_now=True)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文