violet/prisma/schema.prisma

26 lines
428 B
Plaintext
Raw Normal View History

2022-08-26 20:34:55 -04:00
// 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?
}
2023-08-15 17:32:24 -04:00
model Timezone {
user String @id
tz String?
}