// 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 File { id String @id @default(cuid()) filename String mimetype String size Int data Bytes // PostgreSQL ByteA type for blob storage createdAt DateTime @default(now()) updatedAt DateTime @updatedAt }