-
-
Notifications
You must be signed in to change notification settings - Fork 775
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* GITC-475: Adds active to GrantCLRCalculation to mark ongoing rounds * GITC-475: Command to set latest on historic calc data * GITC-475: Uses active in place of latest to retain hold over most recent calcs * GITC-475: resolves multiple leaf nodes in migrations * fix: fixes isort/linting issues * GITC-500: Adds ability to recalculate inactive rounds * GITC-475: Use only active calcs to set Grants clr_prediction_curve * GITC-500: Prep form merge - we should make this check on active once GITC-475 is merged * GITC-495: flattens queried columns and adds indexing * add grant_clr_percentage_cap * fix: combines migrations * fix: moves is_active check to record_clr_prediction_curve -> active * fix: typos * fix: defaults percentage_cap to 100% if absent * fix: corrects migration dependency * fix: conflicting migrations Co-authored-by: Aditya Anand M C <[email protected]>
- Loading branch information
1 parent
0c6a92d
commit 4f3d0de
Showing
21 changed files
with
288 additions
and
101 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
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 2.2.24 on 2021-11-16 03:03 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('dashboard', '0195_auto_20211124_0639'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='profile', | ||
name='trust_bonus', | ||
field=models.DecimalField(decimal_places=2, default=0.5, help_text='Trust Bonus score based on verified services', max_digits=5), | ||
), | ||
] |
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
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
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
Oops, something went wrong.