mirror of
https://github.com/dsoaress/link-free.git
synced 2026-08-19 07:56:03 +01:00
feat: add prisma
This commit is contained in:
13
prisma/schema.prisma
Normal file
13
prisma/schema.prisma
Normal file
@@ -0,0 +1,13 @@
|
||||
generator client {
|
||||
provider = "prisma-client-js"
|
||||
}
|
||||
|
||||
datasource db {
|
||||
provider = "postgresql"
|
||||
url = env("DATABASE_URL")
|
||||
}
|
||||
|
||||
model Data {
|
||||
id Int @id @default(autoincrement())
|
||||
data String
|
||||
}
|
||||
Reference in New Issue
Block a user