Files
page-assist/prisma/schema.prisma

18 lines
378 B
Plaintext
Raw Normal View History

2023-04-09 14:30:44 +05:30
// 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 {
2023-04-10 20:25:37 +05:30
provider = "postgresql"
2023-04-09 14:30:44 +05:30
url = env("DATABASE_URL")
}
model Example {
id String @id @default(cuid())
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
}