// This is your Prisma schema file, // learn more about it in the docs: https://pris.ly/d/prisma-schema generator client { provider = "cargo prisma" output = "../src/prisma.rs" } datasource db { provider = "postgresql" url = env("DATABASE_URL") } model Todo { id String @id @map("_id") @default(cuid()) title String completed Boolean @default(false) createdAt DateTime @default(now()) updatedAt DateTime @updatedAt }