Sabin Adams
02/08/2022, 2:27 AMUser
model for the first time. It might look like
model users {
Id Int @id @default(autoincrement())
first_name String
last_name String
}
I'd switch it to
model User {
id Int @id @default(autoincrement()) @map("Id")
firstName String @map("first_name")
lastName String @map("last_name")
@@map("users")
}