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 b1e28d8 commit a7a1708Copy full SHA for a7a1708
1 file changed
models/base.py
@@ -32,6 +32,8 @@ class User(Base):
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
+ apple_refresh_token = Column(String, nullable=True)
36
+ google_refresh_token = Column(String, nullable=True)
37
email_verified = Column(Boolean, default=False)
38
39
stripe_customer_id = Column(String)
0 commit comments