django-ex/welcome/models.py

8 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)