Skip to content

Instantly share code, notes, and snippets.

@mazlum
Last active June 3, 2019 14:28
Show Gist options
  • Save mazlum/06a0dc5d8abb6b6b413d1ffa2c8db20c to your computer and use it in GitHub Desktop.
Save mazlum/06a0dc5d8abb6b6b413d1ffa2c8db20c to your computer and use it in GitHub Desktop.
Django making queries
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