django-ex/welcome/models.py
2015-05-29 12:23:59 +02:00

7 lines
191 B
Python

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)