summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--aloha/allotter/models.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/aloha/allotter/models.py b/aloha/allotter/models.py
index d333deb..3be370f 100644
--- a/aloha/allotter/models.py
+++ b/aloha/allotter/models.py
@@ -123,6 +123,10 @@ class Profile(models.Model):
phone_number = models.CharField(max_length=15, verbose_name="Phone Number", blank=True, null=True,
help_text=u"Phone number read from user after authentication")
+
+ dd_no = models.CharField(max_length=15, verbose_name="Demand Draft Number", blank=True, null=True)
+
+ cat_status = models.BooleanField(help_text="Whether belongs to Category SBOBC", default=False)
#Application for the Profile
application = models.ForeignKey(Application)