mirror of
https://github.com/django/django.git
synced 2025-01-27 10:39:40 +00:00
9b1cb755a2
For more information on this project, see this thread: http://groups.google.com/group/django-developers/browse_thread/thread/cf0423bbb85b1bbf git-svn-id: http://code.djangoproject.com/svn/django/trunk@17106 bcc190cf-cafb-0310-a4f2-bffc1f526a37
9 lines
225 B
Python
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)
|