forked from GW2Raidar/gw2raidar
-
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.
Added percentile autocalculation on stat modification
- Loading branch information
Showing
2 changed files
with
70 additions
and
4 deletions.
There are no files selected for viewing
36 changes: 36 additions & 0 deletions
36
raidar/migrations/0049_stats_add_percentile_autocalculation.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,36 @@ | ||
# Generated by Django 2.2.3 on 2019-09-17 09:05 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('raidar', '0048_new_era_store'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='squadstats', | ||
name='avg_val', | ||
field=models.FloatField(default=0, editable=False), | ||
preserve_default=False, | ||
), | ||
migrations.AddField( | ||
model_name='squadstats', | ||
name='max_val', | ||
field=models.FloatField(default=0, editable=False), | ||
preserve_default=False, | ||
), | ||
migrations.AddField( | ||
model_name='squadstats', | ||
name='min_val', | ||
field=models.FloatField(default=0, editable=False), | ||
preserve_default=False, | ||
), | ||
migrations.AddField( | ||
model_name='squadstats', | ||
name='perc_data', | ||
field=models.TextField(default='', editable=False), | ||
), | ||
] |
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