fix(drizzle): drizzle with mysql update breaks on anything other than update by id(#1377)

---------

Co-authored-by: Bereket Engida <bekacru@gmail.com>
This commit is contained in:
KinfeMichael Tariku
2025-02-08 11:11:37 +03:00
committed by GitHub
parent 90a487a6b5
commit 0794de2c71
6 changed files with 99 additions and 162 deletions

View File

@@ -1,3 +1,4 @@
generator client {
provider = "prisma-client-js"
}

View File

@@ -1,3 +1,4 @@
generator client {
provider = "prisma-client-js"
}

View File

@@ -1,3 +1,4 @@
generator client {
provider = "prisma-client-js"
}

View File

@@ -1,83 +0,0 @@
generator client {
provider = "prisma-client-js"
}
datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
}
model User {
id String @id
name String
email String
emailVerified Boolean
image String?
createdAt DateTime
updatedAt DateTime
twoFactorEnabled Boolean?
username String?
sessions Session[]
accounts Account[]
twofactors TwoFactor[]
@@unique([email])
@@unique([username])
@@map("user")
}
model Session {
id String @id
expiresAt DateTime
token String
createdAt DateTime
updatedAt DateTime
ipAddress String?
userAgent String?
userId String
user User @relation(fields: [userId], references: [id], onDelete: Cascade)
@@unique([token])
@@map("session")
}
model Account {
id String @id
accountId String
providerId String
userId String
user User @relation(fields: [userId], references: [id], onDelete: Cascade)
accessToken String?
refreshToken String?
idToken String?
accessTokenExpiresAt DateTime?
refreshTokenExpiresAt DateTime?
scope String?
password String?
createdAt DateTime
updatedAt DateTime
@@map("account")
}
model Verification {
id String @id
identifier String
value String
expiresAt DateTime
createdAt DateTime?
updatedAt DateTime?
@@map("verification")
}
model TwoFactor {
id String @id
secret String
backupCodes String
userId String
user User @relation(fields: [userId], references: [id], onDelete: Cascade)
@@map("twoFactor")
}