Michael Grigoryan
06/28/2021, 7:05 PMschema.prisma
that I want to achieve
const uuid = require("uuid");
model User {
id Int @default(autoincrement()) @id
email String @unique
name String?
posts Post[]
profile Profile?
}
Spencer Curry
06/28/2021, 7:08 PMSpencer Curry
06/28/2021, 7:09 PMuuid()
to default()
Michael Grigoryan
06/28/2021, 7:09 PMSpencer Curry
06/28/2021, 7:10 PMMichael Grigoryan
06/28/2021, 7:11 PMMichael Grigoryan
06/29/2021, 6:26 AMSpencer Curry
06/29/2021, 1:25 PM