Skip to content

Instantly share code, notes, and snippets.

@hassanabidpk
Created April 6, 2017 05:47
Show Gist options
  • Save hassanabidpk/2babced3d34c784175f8261030dfa675 to your computer and use it in GitHub Desktop.
Save hassanabidpk/2babced3d34c784175f8261030dfa675 to your computer and use it in GitHub Desktop.
For Medium blog post
from django.db import models
class Restaurant(models.Model):
name = models.CharField(max_length=200)
description = models.TextField(blank=True)
image = models.ImageField(upload_to="restaurants/images/", null=True, blank=True)
def __str__(self):
return "{}".format(self.name)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment