Files
Rental/prisma/schema.prisma
2025-12-09 22:46:24 +03:00

21 lines
425 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"
output = "./generated"
}
datasource db {
provider = "sqlite"
}
model User {
id Int @id @default(autoincrement())
name String
phone String
service String?
comment String?
route String?
createdAt DateTime @default(now())
}