Skip to content
Snippets Groups Projects
Commit 413af902 authored by Christian Dresen's avatar Christian Dresen
Browse files

[WarpPay] Changed Pincode to nullable

parent 0657deed
No related branches found
No related tags found
No related merge requests found
......@@ -56,7 +56,7 @@ class UserCredit(models.Model):
uid = models.CharField(max_length=100,unique=True)
card_id = models.CharField(max_length=10, null=True) # Unique only with django 1.11
credit = models.FloatField()
pinCode = models.CharField(max_length=100)
pinCode = models.CharField(max_length=100, null=True)
def __str__(self):
return self.uid
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment