Skip to content

Commit

Permalink
Style
Browse files Browse the repository at this point in the history
  • Loading branch information
palewire committed Mar 10, 2015
1 parent bc3ad8d commit 58c872d
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions calaccess_raw/models/other.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,11 +139,19 @@ class FilerAddressCd(CalAccessBaseModel):
filer_id = models.IntegerField(db_column='FILER_ID')
adrid = models.IntegerField(db_column='ADRID')
effect_dt = models.DateTimeField(
db_column='EFFECT_DT', blank=True, null=True
db_column='EFFECT_DT',
blank=True,
null=True
)
add_type = models.IntegerField(
db_column='ADD_TYPE',
blank=True,
null=True
)
add_type = models.IntegerField(db_column='ADD_TYPE', blank=True, null=True)
session_id = models.IntegerField(
db_column='SESSION_ID', blank=True, null=True
db_column='SESSION_ID',
blank=True,
null=True
)

class Meta:
Expand Down

0 comments on commit 58c872d

Please sign in to comment.