Last active
June 3, 2019 14:28
-
-
Save mazlum/06a0dc5d8abb6b6b413d1ffa2c8db20c to your computer and use it in GitHub Desktop.
Django making queries
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 Exam(models.Model): | |
studen_name = models.CharField(max_lenght=50) | |
point = models.PositiveIntegerField(default=0) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment