We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 245383d commit a50cbabCopy full SHA for a50cbab
selfservice/models.py
@@ -39,7 +39,7 @@ class RecoverySession(db.Model):
39
__tablename__ = "session"
40
id = Column(String(36), primary_key=True)
41
username = Column(String(64), nullable=False)
42
- created = Column(DateTime, server_default=func.timezone("UTC", func.now()))
+ created = Column(DateTime, default=func.timezone("UTC", func.now()))
43
44
45
class PhoneVerification(db.Model):
0 commit comments