Skip to content

Commit

Permalink
fix(diracx-db): AuthDB column typo
Browse files Browse the repository at this point in the history
  • Loading branch information
aldbr committed Jan 16, 2025
1 parent 4ddba9d commit ddf1aaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion diracx-db/src/diracx/db/sql/auth/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class AuthorizationFlows(Base):
uuid = Column("UUID", Uuid(as_uuid=False), primary_key=True)
status = EnumColumn("Status", FlowStatus, server_default=FlowStatus.PENDING.name)
client_id = Column("ClientID", String(255))
creation_time = DateNowColumn("CretionTime")
creation_time = DateNowColumn("CreationTime")
scope = Column("Scope", String(1024))
code_challenge = Column("CodeChallenge", String(255))
code_challenge_method = Column("CodeChallengeMethod", String(8))
Expand Down

0 comments on commit ddf1aaa

Please sign in to comment.