Skip to content

Instantly share code, notes, and snippets.

@renatooliveira
Created April 10, 2013 21:45
Show Gist options
  • Save renatooliveira/5358731 to your computer and use it in GitHub Desktop.
Save renatooliveira/5358731 to your computer and use it in GitHub Desktop.
from django.db import models
class Imovel(models.Model):
#atributos
class Imagem(models.Model):
imovel = models.ForeignKey(Imovel, related_name="imagens")
descricao = models.CharField(max_length=200)
imagem = models.ImageField(upload_to='imagens')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment