Skip to content

Commit

Permalink
Fixing: max_lenght
Browse files Browse the repository at this point in the history
  • Loading branch information
jamiehewitt15 committed Nov 2, 2023
1 parent 788843e commit 185c4a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/oceandbs/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ class Quote(models.Model):
payment = models.OneToOneField(Payment, null=True, blank=True, related_name="quote", on_delete=models.CASCADE)
tokenAddress = models.CharField(max_length=256, null=True)
approveAddress = models.CharField(max_length=256, null=True)
tokenAmount = models.CharField(null=True)
tokenAmount = models.CharField(max_length=256, null=True)
status = models.CharField(choices=UPLOAD_CODE, default=UPLOAD_CODE[1], null=True, blank=True, max_length=3)
nonce = models.DateTimeField(default=nonce_computation())

Expand Down

0 comments on commit 185c4a0

Please sign in to comment.