Files
remix-heroku/prisma/schema.prisma
Tommy Parnell 6e18c2c7ef init
2022-04-07 10:18:09 -04:00

18 lines
334 B
Plaintext

// 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 = "postgresql"
url = env("DATABASE_URL")
}
model Note {
id Int @id @default(autoincrement())
name String
content String
}