23 lines
498 B
Plaintext
23 lines
498 B
Plaintext
// This is your Prisma schema file,
|
|
// learn more about it in the docs: https://pris.ly/d/prisma-schema
|
|
|
|
generator client {
|
|
provider = "prisma-client-js"
|
|
}
|
|
|
|
datasource db {
|
|
provider = "mysql"
|
|
url = env("DATABASE_URL")
|
|
}
|
|
|
|
model Todo {
|
|
id Int @id @default(autoincrement())
|
|
title String
|
|
description String?
|
|
completed Boolean @default(false)
|
|
priority String @default("medium")
|
|
createdAt DateTime @default(now())
|
|
updatedAt DateTime @updatedAt
|
|
}
|
|
|