Working on order, carts, and Stripe

This commit is contained in:
Scott Idem
2022-01-23 18:31:45 -05:00
parent 4a8c77d4e0
commit b0537723a7
4 changed files with 12 additions and 7 deletions

View File

@@ -94,6 +94,8 @@ class Person_Base(BaseModel):
external_id: Optional[str]
external_import_id: Optional[str]
stripe_customer_id: Optional[str]
allow_auth_key: Optional[bool]
auth_key: Optional[str]
@@ -106,7 +108,7 @@ class Person_Base(BaseModel):
created_on: Optional[datetime.datetime] = None
updated_on: Optional[datetime.datetime] = None
test_field: str = 'asdf 1234'
test_field: str = 'abcd 1234'
# Including convenience data
# This is only for convenience. Probably going to keep unless it causes a problem.