Skip to content

Instantly share code, notes, and snippets.

@magmax
Created August 15, 2011 07:54
Show Gist options
  • Save magmax/1145872 to your computer and use it in GitHub Desktop.
Save magmax/1145872 to your computer and use it in GitHub Desktop.
Django: Creación de un site (models.py)
class blog(models.Model):
title = models.CharField(max_length=50)
body = models.TextField()
creation = models.DateField()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment