Skip to content

Instantly share code, notes, and snippets.

View chrisjakuta's full-sized avatar

Christopher Johnson chrisjakuta

View GitHub Profile
from os import name
from django.db import models
#from django.contrib.auth.models import User
#this is the user model with my desire fields
# Create your models here.
class User(models.Model):
name = models.CharField(max_length=200, null=True, blank=True)
email = models.EmailField(max_length=200, null=True, blank=True)
occupation = models.CharField(max_length=200, null=True, blank=True)