Update db/postgresql/schema.prisma

Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com>
This commit is contained in:
Gavin Mogan 2025-08-22 16:32:09 -07:00 committed by GitHub
parent fa874dd7ee
commit 42f1760586
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -275,5 +275,7 @@ model OidcState {
codeVerifier String @db.VarChar(255) codeVerifier String @db.VarChar(255)
createdAt DateTime @default(now()) @map("created_at") @db.Timestamptz(6) createdAt DateTime @default(now()) @map("created_at") @db.Timestamptz(6)
@@index([createdAt])
@@map("oidc_state") @@map("oidc_state")
} }