django-ex/welcome/models.py

8 lines
191 B
Python
Raw Normal View History

2015-05-24 13:10:47 +02:00
from django.db import models
# Create your models here.
class PageView(models.Model):
hostname = models.CharField(max_length=32)
timestamp = models.DateTimeField(auto_now_add=True)