Files
2021-02-02 05:27:24 +00:00

19 lines
370 B
Plaintext

// This is your Prisma schema file,
// learn more about it in the docs: https://pris.ly/d/prisma-schema
datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
}
generator client {
provider = "prisma-client-js"
}
model Todo {
id String @id @default(uuid())
createdAt DateTime @default(now())
text String
completed Boolean
}