This repository has been archived on 2026-01-31. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
nodejs-template-with-typesc…/prisma/schema.prisma
Riccardo Senica 392e0db67b Prisma (#2)
feat: added Prisma
2023-08-05 17:23:34 +02:00

17 lines
303 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-js"
}
datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
}
model Addition {
id String @id
datetime DateTime
value Int
}