Created
January 8, 2022 17:29
-
-
Save dipeshhkc/d6f24579e934e9c5d7177766b4823f80 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
// 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") | |
} | |
model Task { | |
id String @id @default(uuid()) | |
createdAt DateTime @default(now()) | |
updatedAt DateTime @updatedAt | |
name String | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment