Skip to content

Instantly share code, notes, and snippets.

@taranjeet
Created June 12, 2018 05:51
Show Gist options
  • Save taranjeet/dbf1010d5c952532d48290d75dc199ad to your computer and use it in GitHub Desktop.
Save taranjeet/dbf1010d5c952532d48290d75dc199ad to your computer and use it in GitHub Desktop.
Django Library : Book Model
from django.db import models
class Book(models.Model):
name = models.CharField(max_length=255)
isbn_number = models.CharField(max_length=13)
class Meta:
db_table = 'book'
def __str__(self):
return self.name
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment