E.G: If I needed to use the `User` model for the f...
# orm-help
s
E.G: If I needed to use the
User
model for the first time. It might look like
Copy code
model users {
    Id Int @id @default(autoincrement())
    first_name String
    last_name String
}
I'd switch it to
Copy code
model User {
    id Int @id @default(autoincrement()) @map("Id")
    firstName String @map("first_name")
    lastName  String @map("last_name")
    @@map("users")
}