This commit is contained in:
makuro
2026-03-11 11:52:09 +08:00
commit 0b07db35a5
29 changed files with 1547 additions and 0 deletions

BIN
prisma/dev.db Normal file

Binary file not shown.

17
prisma/schema.prisma Normal file
View File

@@ -0,0 +1,17 @@
generator client {
provider = "prisma-client-js"
output = "../generated/prisma"
}
datasource db {
provider = "sqlite"
url = env("DATABASE_URL")
}
model Path {
id String @id @default(cuid())
from String @unique
to String
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
}