Add "raw" card number value to CORE Member Import batch

b/c source file may not have it, or may not be numeric
This commit is contained in:
Lance Edgar 2022-03-15 11:34:37 -05:00
parent 90cb4cf028
commit 8daec28faf
3 changed files with 37 additions and 1 deletions

View file

@ -70,6 +70,7 @@ class CoreMemberBatchRow(model.BatchRowMixin, model.Base):
STATUS_FIELDS_CHANGED : "update member",
}
card_number_raw = sa.Column(sa.String(length=20), nullable=True)
card_number = sa.Column(sa.Integer(), nullable=True)
first_name = sa.Column(sa.String(length=30), nullable=True)