Skip to content

Commit b3b2f73

Browse files
authored
Merge pull request #376 from aldbr/main_FIX_authdb-name-error-creation-time
fix(diracx-db): AuthDB column typo
2 parents 4ddba9d + ddf1aaa commit b3b2f73

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

diracx-db/src/diracx/db/sql/auth/schema.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ class AuthorizationFlows(Base):
5555
uuid = Column("UUID", Uuid(as_uuid=False), primary_key=True)
5656
status = EnumColumn("Status", FlowStatus, server_default=FlowStatus.PENDING.name)
5757
client_id = Column("ClientID", String(255))
58-
creation_time = DateNowColumn("CretionTime")
58+
creation_time = DateNowColumn("CreationTime")
5959
scope = Column("Scope", String(1024))
6060
code_challenge = Column("CodeChallenge", String(255))
6161
code_challenge_method = Column("CodeChallengeMethod", String(8))

0 commit comments

Comments
 (0)