last-comment-revert
Some checks failed
Deploy on push / deploy (push) Failing after 10s

This commit is contained in:
2024-08-06 18:18:51 +03:00
parent dfd476411f
commit 522718f3a1
5 changed files with 28 additions and 31 deletions

View File

@@ -24,7 +24,7 @@ class User(Base):
# preferred_username = Column(String, nullable=False)
picture = Column(String)
revoked_timestamp = Column(Integer)
roles = Column(String, default="author, reader")
roles = Column(String, default="author,reader")
signup_methods = Column(String, default="magic_link_login")
created_at = Column(Integer, default=lambda: int(time.time()))
updated_at = Column(Integer, default=lambda: int(time.time()))