Skip to content

Commit

Permalink
Added phantom db values to juris_cd choices RE #237. Did the same for…
Browse files Browse the repository at this point in the history
… off_s_h_cd choices RE #235
  • Loading branch information
aboutaaron committed Mar 19, 2015
1 parent 490824b commit 7a68e63
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions calaccess_raw/models/campaign.py
Original file line number Diff line number Diff line change
Expand Up @@ -1832,6 +1832,15 @@ class ExpnCd(CalAccessBaseModel):
('RCP', 'Recipient Committee'),
('IND', 'Individual'),
('OTH', 'Other'),
('PTY', 'PTY - Unknown'),
('SCC', 'SCC 0 Unknown'),
('BNM', 'BNM - Unknown'),
('CAO', 'CAO - Unknown'),
('OFF', 'OFF - Unknown'),
('PTH', 'PTH - Unknown'),
('RFD', 'RFD - Unknown'),
('MBR', 'MBR - Unknown'),
('0', '0 - Unknown'),
)
entity_cd = models.CharField(
choices=ENTITY_CD_CHOICES,
Expand Down Expand Up @@ -1932,6 +1941,9 @@ class ExpnCd(CalAccessBaseModel):
OFF_S_H_CD_CHOICES = (
('H', 'Office Held'),
('S', 'Office Sought'),
('A', 'A - Unknown'),
('8', '8 - Unknown'),
('O', 'O - Unknown'),
)
off_s_h_cd = models.CharField(
choices=OFF_S_H_CD_CHOICES,
Expand Down

0 comments on commit 7a68e63

Please sign in to comment.