-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1164 from toladata/TOLA-448-allow-four-decimal-pl…
…aces TOLA-448: Allow four decimal places
- Loading branch information
Showing
2 changed files
with
55 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
# -*- coding: utf-8 -*- | ||
# Generated by Django 1.11.17 on 2019-02-20 10:54 | ||
from __future__ import unicode_literals | ||
|
||
from decimal import Decimal | ||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('indicators', '0020_auto_20190128_1307'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='collecteddata', | ||
name='achieved', | ||
field=models.DecimalField(decimal_places=4, default=Decimal('0.00'), help_text=b'Actual or total for this record', max_digits=20, verbose_name=b'Achieved'), | ||
), | ||
migrations.AlterField( | ||
model_name='historicalcollecteddata', | ||
name='achieved', | ||
field=models.DecimalField(decimal_places=4, default=Decimal('0.00'), help_text=b'Actual or total for this record', max_digits=20, verbose_name=b'Achieved'), | ||
), | ||
migrations.AlterField( | ||
model_name='historicalindicator', | ||
name='actuals', | ||
field=models.DecimalField(blank=True, decimal_places=4, help_text=b'Sum of collected datas achieved', max_digits=20, null=True), | ||
), | ||
migrations.AlterField( | ||
model_name='historicalindicator', | ||
name='lop_target', | ||
field=models.DecimalField(blank=True, decimal_places=4, default=Decimal('0.00'), help_text=b'Life of Program or Project goal for actual', max_digits=20, verbose_name=b'LOP Target'), | ||
), | ||
migrations.AlterField( | ||
model_name='indicator', | ||
name='actuals', | ||
field=models.DecimalField(blank=True, decimal_places=4, help_text=b'Sum of collected datas achieved', max_digits=20, null=True), | ||
), | ||
migrations.AlterField( | ||
model_name='indicator', | ||
name='lop_target', | ||
field=models.DecimalField(blank=True, decimal_places=4, default=Decimal('0.00'), help_text=b'Life of Program or Project goal for actual', max_digits=20, verbose_name=b'LOP Target'), | ||
), | ||
migrations.AlterField( | ||
model_name='periodictarget', | ||
name='target', | ||
field=models.DecimalField(decimal_places=4, default=Decimal('0.00'), max_digits=20), | ||
), | ||
] |
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