DATABASE_URL="postgresql://user:password@localhost:5432/mydb" model User id Int @id @default(autoincrement()) email String @unique name String
async function main() const user = await prisma.user.create( data: email: 'test@example.com', name: 'Test User' prisma ts download
) console.log(user)
DATABASE_URL="postgresql://user:password@localhost:5432/mydb" model User id Int @id @default(autoincrement()) email String @unique name String
async function main() const user = await prisma.user.create( data: email: 'test@example.com', name: 'Test User'
) console.log(user)