frontend/prisma/schema.prisma

18 lines
344 B
Plaintext
Raw Normal View History

2023-02-04 16:44:27 +00:00
// 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 = "file:./dev.sqlite"
}
model Article {
id Int @id @default(autoincrement())
title String
content String
}