Skip to content

Instantly share code, notes, and snippets.

@ryanleonbutler
Created April 27, 2021 19:30
Show Gist options
  • Select an option

  • Save ryanleonbutler/d377540cc6b7e6fa258a46a5ac074f84 to your computer and use it in GitHub Desktop.

Select an option

Save ryanleonbutler/d377540cc6b7e6fa258a46a5ac074f84 to your computer and use it in GitHub Desktop.
Sample models example
from django.db import models
class Dog(models.Model):
dog_name = models.CharField(max_length=30)
dog_breed = models.CharField(max_length=30)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment