Created
August 10, 2017 02:50
-
-
Save devMlGUE/e6919866edca484d7f595400db4e71a1 to your computer and use it in GitHub Desktop.
Django: Modelo de ejemplo
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
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