Skip to content

Commit

Permalink
change claim recipts amount to use big num field
Browse files Browse the repository at this point in the history
  • Loading branch information
Mohamad Bastin committed Oct 2, 2023
1 parent 1c5e690 commit 59d4919
Showing 1 changed file with 19 additions and 0 deletions.
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),
),
]

0 comments on commit 59d4919

Please sign in to comment.