Skip to content

Instantly share code, notes, and snippets.

@shaurya-blip
Last active February 3, 2021 06:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shaurya-blip/da5816853d98ec662db675844a31fd70 to your computer and use it in GitHub Desktop.
Save shaurya-blip/da5816853d98ec662db675844a31fd70 to your computer and use it in GitHub Desktop.
from django.db import models
# Create your models here.
class Book(models.Model):
title = models.CharField(max_length=150)
author = models.CharField(max_length=100)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment