Update db/mysql/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:15 -07:00 committed by GitHub
parent 42f1760586
commit 85b024a59b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -273,7 +273,7 @@ model Revenue {
model OidcState {
state String @id() @unique() @db.Uuid
codeVerifier String @db.VarChar(255)
createdAt DateTime @default(now()) @map("created_at") @db.Timestamptz(6)
createdAt DateTime @default(now()) @map("created_at") @db.Timestamp(0)
@@map("oidc_state")
}