Skip to content

Instantly share code, notes, and snippets.

@0916dhkim
Created January 18, 2022 04:03
Show Gist options
  • Save 0916dhkim/1aa49c48957a4a21fca86b0cb1fcb6d6 to your computer and use it in GitHub Desktop.
Save 0916dhkim/1aa49c48957a4a21fca86b0cb1fcb6d6 to your computer and use it in GitHub Desktop.
datasource db {
url = env("DATABASE_URL")
provider = "postgresql"
}
generator client {
provider = "prisma-client-js"
}
model Contact {
id Int @id @default(autoincrement())
createdAt DateTime @default(now())
email String @unique
name String?
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment