Created
April 27, 2021 19:30
-
-
Save ryanleonbutler/d377540cc6b7e6fa258a46a5ac074f84 to your computer and use it in GitHub Desktop.
Sample models example
This file contains hidden or 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 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