Created
December 24, 2022 04:07
-
-
Save kuc-arc-f/f15e42bffa19ca887b8d910adba973e8 to your computer and use it in GitHub Desktop.
Prisma , Session table sample
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 Session { | |
id Int @id @default(autoincrement()) | |
key String? | |
value String? | |
createdAt DateTime @default(now()) | |
updatedAt DateTime @updatedAt | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment