Skip to content

Commit

Permalink
go back to driver_race_comb
Browse files Browse the repository at this point in the history
  • Loading branch information
copelco committed Nov 30, 2023
1 parent f957fa3 commit 828c31c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion nc/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,9 @@ class ContrabandSummary(pg.ReadOnlyMaterializedView):
agency = models.ForeignKey("Agency", on_delete=models.DO_NOTHING)
officer_id = models.CharField(max_length=15)
stop_purpose_group = models.CharField(choices=StopPurposeGroup.choices, max_length=32)
driver_race = models.CharField(max_length=2, choices=DriverRace.choices)
driver_race_comb = models.CharField(
max_length=2, choices=DriverRace.choices, db_column="driver_race"
)
driver_gender = models.CharField(max_length=8, choices=GENDER_CHOICES)
driver_searched = models.BooleanField()
search = models.ForeignKey("Search", on_delete=models.DO_NOTHING)
Expand Down

0 comments on commit 828c31c

Please sign in to comment.