Skip to content

Instantly share code, notes, and snippets.

@aballah-chamakh
Created June 28, 2019 10:01
Show Gist options
  • Save aballah-chamakh/676259b3670442c03e3b1ca6178362c1 to your computer and use it in GitHub Desktop.
Save aballah-chamakh/676259b3670442c03e3b1ca6178362c1 to your computer and use it in GitHub Desktop.
from django.db import models
class Porduct(models.Model):
title = models.CharField(max_length=255)
image = models.ImageField()
price = models.IntergerField()
def __str__(self):
return self.title
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment