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:
parent
90cb4cf028
commit
8daec28faf
3 changed files with 37 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue