Skip to content

Commit

Permalink
Merge pull request #376 from aldbr/main_FIX_authdb-name-error-creatio…
Browse files Browse the repository at this point in the history
…n-time

fix(diracx-db): AuthDB column typo
  • Loading branch information
chaen authored Jan 16, 2025
2 parents 4ddba9d + ddf1aaa commit b3b2f73
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 b3b2f73

Please sign in to comment.