Commit ef010c74 authored by Vaughn Fajardo's avatar Vaughn Fajardo

feat: added id_num and email fields to WidgetUser

parent f5e07187
......@@ -5,3 +5,5 @@ 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)
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