Ejemplo n.º 1
0
class Blog(models.Model):
    name = models.CharField(max_length=64, )
    address = models.CharField()
    houseid = models.Interfield()

    def __str__(self):
        return self.name
Ejemplo n.º 2
0
class Post(models.Model):
    name = models.CharField()
    address = models.CharField()
    houseid = models.Interfield()

    def __str__(self):
        return self.name