init prysma

This commit is contained in:
alsaze
2025-12-09 22:46:24 +03:00
parent 2fdeeb3520
commit e9144bd78c
20 changed files with 3470 additions and 33 deletions

21
prisma/schema.prisma Normal file
View File

@@ -0,0 +1,21 @@
// 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())
}