feat: database

This commit is contained in:
2025-08-11 14:57:08 -07:00
parent 99a91b7c90
commit 0b6a85ea2c
4 changed files with 455 additions and 79 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-js"
}
datasource db {
provider = "mongodb"
url = env("MONGO_URI")
}
model Links {
id String @id @default(auto()) @map("_id") @db.ObjectId
userId String
url String
slug String @unique
@@unique([userId, url], map: "userId_url")
@@index(userId)
}