Created
June 12, 2018 05:51
-
-
Save taranjeet/dbf1010d5c952532d48290d75dc199ad to your computer and use it in GitHub Desktop.
Django Library : Book Model
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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