29 lines
591 B
Plaintext
29 lines
591 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
|
|
content String?
|
|
is_done Boolean? @default(false)
|
|
}
|
|
|
|
model User {
|
|
id Int @id @default(autoincrement())
|
|
username String
|
|
password String
|
|
role String? @default("user")
|
|
is_done Boolean? @default(false)
|
|
}
|