diff --git a/Microblog/apps/Microblog2/models.py b/Microblog/apps/Microblog2/models.py index bd4b2ab..bcbe47c 100644 --- a/Microblog/apps/Microblog2/models.py +++ b/Microblog/apps/Microblog2/models.py @@ -2,4 +2,8 @@ from django.db import models +class User(models.Model): + first_name = models.CharField(max_length=45) + last_name = models.CharField(max_length=45) + # Create your models here.