CHORE(app): initial configuration
- Add initial app settings - Configure base deployment
This commit is contained in:
22
services/nextjs/prisma/schema.prisma
Normal file
22
services/nextjs/prisma/schema.prisma
Normal file
@@ -0,0 +1,22 @@
|
||||
// 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 Todo {
|
||||
id Int @id @default(autoincrement())
|
||||
title String
|
||||
description String?
|
||||
completed Boolean @default(false)
|
||||
priority String @default("medium")
|
||||
createdAt DateTime @default(now())
|
||||
updatedAt DateTime @updatedAt
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user