From abd9d9e49a5b87ec260c9b7705126cd94688592d Mon Sep 17 00:00:00 2001 From: Anderson Banihirwe Date: Thu, 5 Sep 2024 13:33:25 -0700 Subject: [PATCH] Rename account-related fields to retirement-specific fields in credit_without_id_schema. --- offsets_db_data/models.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/offsets_db_data/models.py b/offsets_db_data/models.py index 5874847..767b5bd 100644 --- a/offsets_db_data/models.py +++ b/offsets_db_data/models.py @@ -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), } )