Skip to content

Commit

Permalink
Rename UBI parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
Henry Doupe committed Jan 18, 2018
1 parent 385d0ff commit b14ef23
Show file tree
Hide file tree
Showing 4 changed files with 60 additions and 3 deletions.
19 changes: 19 additions & 0 deletions webapp/apps/taxbrain/migrations/0068_auto_20180118_2146.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import models, migrations


class Migration(migrations.Migration):

dependencies = [
('taxbrain', '0067_taxsaveinputs_ald_businesslosses_c'),
]

operations = [
migrations.RenameField(
model_name='taxsaveinputs',
old_name='UBI1',
new_name='UBI_u18',
),
]
19 changes: 19 additions & 0 deletions webapp/apps/taxbrain/migrations/0069_auto_20180118_2147.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import models, migrations


class Migration(migrations.Migration):

dependencies = [
('taxbrain', '0068_auto_20180118_2146'),
]

operations = [
migrations.RenameField(
model_name='taxsaveinputs',
old_name='UBI2',
new_name='UBI_1820',
),
]
19 changes: 19 additions & 0 deletions webapp/apps/taxbrain/migrations/0070_auto_20180118_2147.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import models, migrations


class Migration(migrations.Migration):

dependencies = [
('taxbrain', '0069_auto_20180118_2147'),
]

operations = [
migrations.RenameField(
model_name='taxsaveinputs',
old_name='UBI3',
new_name='UBI_21',
),
]
6 changes: 3 additions & 3 deletions webapp/apps/taxbrain/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -693,9 +693,9 @@ class TaxSaveInputs(models.Model):
CR_OtherCredits_hc = CommaSeparatedField(default=None, blank=True, null=True)
CR_Education_hc = CommaSeparatedField(default=None, blank=True, null=True)

UBI1 = CommaSeparatedField(default=None, blank=True, null=True)
UBI2 = CommaSeparatedField(default=None, blank=True, null=True)
UBI3 = CommaSeparatedField(default=None, blank=True, null=True)
UBI_u18 = CommaSeparatedField(default=None, blank=True, null=True)
UBI_1820 = CommaSeparatedField(default=None, blank=True, null=True)
UBI_21 = CommaSeparatedField(default=None, blank=True, null=True)
UBI_ecrt = CommaSeparatedField(default=None, blank=True, null=True)

# Boolean Checkbox Fields
Expand Down

0 comments on commit b14ef23

Please sign in to comment.