🎉 - First commit!

This commit is contained in:
Florian Sylvain
2022-11-10 10:52:29 +01:00
commit d4fda082c1
11 changed files with 1267 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
// 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 = "mysql"
url = env("DATABASE_URL")
}
model Article {
id Int @id @default(autoincrement())
title String
}