Skip to main content
Glama
schema.prisma•1.26 kB
// 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") } enum ProjectStatus { PLANNED IN_PROGRESS COMPLETED ON_HOLD CANCELLED } enum TaskStatus { TODO IN_PROGRESS COMPLETED BLOCKED } model Project { id String @id @default(cuid()) name String description String? startDate DateTime @map("start_date") endDate DateTime @map("end_date") status ProjectStatus tasks Task[] createdAt DateTime @default(now()) @map("created_at") updatedAt DateTime @updatedAt @map("updated_at") @@map("projects") } model Task { id String @id @default(cuid()) title String assignedTo String @map("assigned_to") assigneeName String? @map("assignee_name") status TaskStatus dueDate DateTime @map("due_date") projectId String @map("project_id") project Project @relation(fields: [projectId], references: [id]) createdAt DateTime @default(now()) @map("created_at") updatedAt DateTime @updatedAt @map("updated_at") @@map("tasks") }

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/jatinderbhola/mcp-taskflow-tracker-api'

If you have feedback or need assistance with the MCP directory API, please join our Discord server