Created
December 13, 2015 01:31
-
-
Save hemache/3efa2e2a839d9d7d7a72 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
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