Skip to content

Instantly share code, notes, and snippets.

@mmtechslv
Created April 7, 2021 15:48
Show Gist options
  • Save mmtechslv/5abf235b083d4ed5b94f6746b7ae0032 to your computer and use it in GitHub Desktop.
Save mmtechslv/5abf235b083d4ed5b94f6746b7ae0032 to your computer and use it in GitHub Desktop.
Markdium-Introduction
class People(models.Model):
name = models.CharField(null=True,blank=True,max_length=50)
surname = models.CharField(null=True,blank=True,max_length=50)
age = models.IntegerField()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment