Commit ed6060b7 authored by Hyomin Lee's avatar Hyomin Lee

hope it works

parent 5e67bbc6
from django.db import models
# Create your models here.
class WidgetUser(models.Model):
first_name = models.CharField(max_length = 50)
middle_name = models.CharField(max_length= 50)
last_name = models.CharField(max_length = 50)
def __str__(self):
return self.last_name
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment