-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Mohamad Bastin
committed
Oct 24, 2023
1 parent
d9cb85d
commit 1f5b86f
Showing
7 changed files
with
145 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
faucet/migrations/0060_rename_weekly_chain_claim_limit_globalsettings_gastap_claim_limit.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Generated by Django 4.0.4 on 2023-10-24 13:33 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('faucet', '0059_chain_explorer_api_key_chain_explorer_api_url'), | ||
] | ||
|
||
operations = [ | ||
migrations.RenameField( | ||
model_name='globalsettings', | ||
old_name='weekly_chain_claim_limit', | ||
new_name='gastap_claim_limit', | ||
), | ||
] |
18 changes: 18 additions & 0 deletions
18
faucet/migrations/0061_rename_gastap_claim_limit_globalsettings_gastap_round_claim_limit.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Generated by Django 4.0.4 on 2023-10-24 13:34 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('faucet', '0060_rename_weekly_chain_claim_limit_globalsettings_gastap_claim_limit'), | ||
] | ||
|
||
operations = [ | ||
migrations.RenameField( | ||
model_name='globalsettings', | ||
old_name='gastap_claim_limit', | ||
new_name='gastap_round_claim_limit', | ||
), | ||
] |
18 changes: 18 additions & 0 deletions
18
...ions/0062_rename_tokentap_weekly_claim_limit_globalsettings_tokentap_round_claim_limit.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Generated by Django 4.0.4 on 2023-10-24 13:35 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('faucet', '0061_rename_gastap_claim_limit_globalsettings_gastap_round_claim_limit'), | ||
] | ||
|
||
operations = [ | ||
migrations.RenameField( | ||
model_name='globalsettings', | ||
old_name='tokentap_weekly_claim_limit', | ||
new_name='tokentap_round_claim_limit', | ||
), | ||
] |
18 changes: 18 additions & 0 deletions
18
...ions/0063_rename_prizetap_weekly_claim_limit_globalsettings_prizetap_round_claim_limit.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Generated by Django 4.0.4 on 2023-10-24 13:35 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('faucet', '0062_rename_tokentap_weekly_claim_limit_globalsettings_tokentap_round_claim_limit'), | ||
] | ||
|
||
operations = [ | ||
migrations.RenameField( | ||
model_name='globalsettings', | ||
old_name='prizetap_weekly_claim_limit', | ||
new_name='prizetap_round_claim_limit', | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Generated by Django 4.0.4 on 2023-10-24 13:33 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('tokenTap', '0018_constraint_icon_url'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='constraint', | ||
name='name', | ||
field=models.CharField(choices=[('BrightIDMeetVerification', 'BrightIDMeetVerification'), ('BrightIDAuraVerification', 'BrightIDAuraVerification'), ('OncePerWeekVerification', 'OncePerWeekVerification'), ('OncePerMonthVerification', 'OncePerMonthVerification'), ('OnceInALifeTimeVerification', 'OnceInALifeTimeVerification'), ('OptimismHasClaimedGasInThisRound', 'OptimismHasClaimedGasInThisRound')], max_length=255, unique=True), | ||
), | ||
] |