Skip to content

Commit

Permalink
Merge pull request #133 from UnitapApp/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
Mohamad Bastin authored Oct 2, 2023
2 parents 13b4dee + 59d4919 commit a99dacb
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 5 deletions.
4 changes: 0 additions & 4 deletions bin/pre_compile

This file was deleted.

19 changes: 19 additions & 0 deletions faucet/migrations/0056_alter_claimreceipt_amount.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Generated by Django 4.0.4 on 2023-10-02 21:42

import core.models
from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
('faucet', '0055_donationreceipt_status_and_more'),
]

operations = [
migrations.AlterField(
model_name='claimreceipt',
name='amount',
field=core.models.BigNumField(max_length=200),
),
]
2 changes: 1 addition & 1 deletion faucet/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ class ClaimReceipt(models.Model):

passive_address = models.CharField(max_length=512, null=True, blank=True)

amount = models.BigIntegerField()
amount = BigNumField()
datetime = models.DateTimeField()
last_updated = models.DateTimeField(auto_now=True, null=True, blank=True)
batch = models.ForeignKey(
Expand Down

0 comments on commit a99dacb

Please sign in to comment.