File: /var/www/europequiz/node_modules/.prisma/client/schema.prisma
// 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 = env("DATABASE_URL")
}
model Quiz {
id Int @id @default(autoincrement())
n String?
startTime DateTime @default(now())
email String? @unique
name String?
middleName String?
lastName String?
questions String?
answers String?
endTime DateTime?
agreement Boolean?
percent Int?
duration Int?
prevTime DateTime?
}