aboutsummaryrefslogtreecommitdiffstats
path: root/prisma/schema.prisma
blob: e0020544b186f5a601adf1c8651e823c80a2eaee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
// 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 = "sqlite"
  url      = env("DATABASE_URL")
}