21 lines
374 B
Plaintext
21 lines
374 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 = "sqlite"
|
|
url = "file:./database.db"
|
|
}
|
|
|
|
model Reminder {
|
|
id Int @id @default(autoincrement())
|
|
user String
|
|
|
|
createdAt DateTime
|
|
sendAt DateTime
|
|
message String?
|
|
}
|