7 lines
191 B
Python
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)
|