We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27fb2e7 commit b1e28d8Copy full SHA for b1e28d8
models/base.py
@@ -31,6 +31,7 @@ class User(Base):
31
username = Column(String(15), unique=True, nullable=False, index=True)
32
password = Column(String, nullable=True)
33
google_id = Column(String, unique=True, index=True)
34
+ apple_id = Column(String, unique=True, index=True)
35
email_verified = Column(Boolean, default=False)
36
37
stripe_customer_id = Column(String)
0 commit comments