Skip to content

Commit

Permalink
Rename account-related fields to retirement-specific fields in credit…
Browse files Browse the repository at this point in the history
…_without_id_schema.
  • Loading branch information
andersy005 committed Sep 5, 2024
1 parent 75f8c38 commit abd9d9e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions offsets_db_data/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@
'vintage': pa.Column(pa.Int, nullable=True, coerce=True),
'transaction_date': pa.Column(pd.DatetimeTZDtype(tz='UTC'), nullable=True),
'transaction_type': pa.Column(pa.String, nullable=True),
'account': pa.Column(pa.String, nullable=True),
'reason': pa.Column(pa.String, nullable=True),
'note': pa.Column(pa.String, nullable=True),
'beneficiary': pa.Column(pa.String, nullable=True),
'retirement_account': pa.Column(pa.String, nullable=True),
'retirement_reason': pa.Column(pa.String, nullable=True),
'retirement_note': pa.Column(pa.String, nullable=True),
'retirement_beneficiary': pa.Column(pa.String, nullable=True),
}
)

Expand Down

0 comments on commit abd9d9e

Please sign in to comment.