Commit ef010c74 authored by Vaughn Fajardo's avatar Vaughn Fajardo

feat: added id_num and email fields to WidgetUser

parent f5e07187
......@@ -4,4 +4,6 @@ from django.db import models
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)
\ No newline at end of file
last_name = models.CharField(max_length=50)
id_num = models.IntegerField(max_length=7)
email = models.EmailField(max_length=50)
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