SpaceCache/prisma/schema.prisma

17 lines
327 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 = "sqlite"
url = env("DATABASE_URL")
}
model Space {
id String @id
open Boolean
updatedAt DateTime @updatedAt
}