Skip to content

Commit

Permalink
Remove another field
Browse files Browse the repository at this point in the history
  • Loading branch information
palewire committed Jul 12, 2024
1 parent de1291c commit 485820b
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions calaccess_raw/migrations/0028_remove_cvrf470cd_cand_adr1.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,8 @@ class Migration(migrations.Migration):
model_name="cvrf470cd",
name="cand_adr1",
),
migrations.RemoveField(
model_name="cvrf470cd",
name="cand_adr2",
),
]
14 changes: 7 additions & 7 deletions calaccess_raw/models/inactive.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,19 +93,19 @@ class CvrF470Cd(CalAccessBaseModel):
help_text="Amendment Identification number. A number of 0 is an original filing and 1 "
"to 999 amendments.",
)
# This field was removed from the extract in 2024
# These fields were removed from the extract in 2024
# cand_adr1 = fields.CharField(
# db_column="CAND_ADR1",
# blank=True,
# max_length=55,
# help_text="First line of the filer's street address.",
# )
cand_adr2 = fields.CharField(
db_column="CAND_ADR2",
blank=True,
max_length=55,
help_text="Second line of the filer's street address. ",
)
# cand_adr2 = fields.CharField(
# db_column="CAND_ADR2",
# blank=True,
# max_length=55,
# help_text="Second line of the filer's street address. ",
# )
cand_city = fields.CharField(
db_column="CAND_CITY",
blank=True,
Expand Down

0 comments on commit 485820b

Please sign in to comment.