Checkpointing stripe work.
This commit is contained in:
parent
211fd6bcd7
commit
7bd18c1bab
11 changed files with 172 additions and 6 deletions
|
@ -22,6 +22,7 @@ class User(BaseModel):
|
|||
password_hash = CharField()
|
||||
email = CharField(unique=True, index=True)
|
||||
verified = BooleanField(default=False)
|
||||
stripe_id = CharField(index=True, null=True)
|
||||
|
||||
|
||||
class Visibility(BaseModel):
|
||||
|
|
Reference in a new issue