class Account(models.Model):
login = models.CharField(max_length=255)
password = models.CharField(max_length=255)
first_name = models.CharField(max_length=255, null=True, blank=True)
last_name = models.CharField(max_length=255, null=True, blank=True)
class ProfilePhoto(models.Model):
account = models.ForeignKey(Account)
photo_name = models.CharField(max_length=255)
photo_url = models.CharField(max_length=255)