Skip to content

Commit

Permalink
Remove field that was cut
Browse files Browse the repository at this point in the history
  • Loading branch information
palewire committed Jul 12, 2024
1 parent 190ed09 commit 9c99c2a
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 6 deletions.
17 changes: 17 additions & 0 deletions calaccess_raw/migrations/0028_remove_cvrf470cd_cand_adr1.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Generated by Django 4.1.13 on 2024-07-12 12:55

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
("calaccess_raw", "0027_alter_cvre530cd_other_desc"),
]

operations = [
migrations.RemoveField(
model_name="cvrf470cd",
name="cand_adr1",
),
]
13 changes: 7 additions & 6 deletions calaccess_raw/models/inactive.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,12 +93,13 @@ class CvrF470Cd(CalAccessBaseModel):
help_text="Amendment Identification number. A number of 0 is an original filing and 1 "
"to 999 amendments.",
)
cand_adr1 = fields.CharField(
db_column="CAND_ADR1",
blank=True,
max_length=55,
help_text="First line of the filer's street address.",
)
# This field was 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,
Expand Down

0 comments on commit 9c99c2a

Please sign in to comment.