Skip to content

Instantly share code, notes, and snippets.

@hemache
Created December 13, 2015 01:31
Show Gist options
  • Save hemache/3efa2e2a839d9d7d7a72 to your computer and use it in GitHub Desktop.
Save hemache/3efa2e2a839d9d7d7a72 to your computer and use it in GitHub Desktop.
"""
Definition of models.
"""
from django.db import models
class Page(models.Model):
created = models.DateTimeField(auto_now_add=True, editable=False)
modified = models.DateTimeField(auto_now=True, editable=False)
url = models.TextField()
title = models.TextField()
html = models.TextField()
text = models.TextField()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment