Created
January 18, 2022 04:03
-
-
Save 0916dhkim/1aa49c48957a4a21fca86b0cb1fcb6d6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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