1
0
mirror of https://github.com/django/django.git synced 2025-01-27 10:39:40 +00:00
2011-11-18 13:01:06 +00:00

9 lines
225 B
Python

from django.db import models
class Event(models.Model):
dt = models.DateTimeField()
class Timestamp(models.Model):
created = models.DateTimeField(auto_now_add=True)
updated = models.DateTimeField(auto_now=True)