Skip to content

Instantly share code, notes, and snippets.

@devMlGUE
Created August 10, 2017 02:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save devMlGUE/e6919866edca484d7f595400db4e71a1 to your computer and use it in GitHub Desktop.
Save devMlGUE/e6919866edca484d7f595400db4e71a1 to your computer and use it in GitHub Desktop.
Django: Modelo de ejemplo
class Director(models.Model):
nombre = models.CharField(max_length=100)
class Pelicula(models.Model):
nombre = models.CharField(max_length=100)
autor = models.ForeignKey('Director', null=True)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment