UA-Bot/prisma/schema.prisma
2023-07-09 23:53:49 +03:00

17 lines
300 B
Text

// 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 Post {
postId String @id
matrixId String @unique
}